Files
kotlin-fork/compiler/testData/diagnostics/tests/constructorConsistency/outer.kt
T

12 lines
139 B
Kotlin
Vendored

// FIR_IDENTICAL
class Outer {
fun foo() = 1
inner class Inner {
val x = this@Outer.foo()
val y = foo()
}
}