67e6687e89
Do not check dispatch receiver applicability when checking visibility for containing class of a callee constructor
13 lines
177 B
Kotlin
Vendored
13 lines
177 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// SKIP_TXT
|
|
|
|
sealed class Outer {
|
|
class NestedSubClass : Outer() {
|
|
fun foo() {
|
|
Inner()
|
|
}
|
|
}
|
|
|
|
private inner class Inner
|
|
}
|