Files
kotlin/compiler/testData/diagnostics/tests/constructorConsistency/outer.kt
2016-06-03 09:45:37 +03:00

11 lines
122 B
Kotlin
Vendored

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