Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/outerObject.kt
T
2020-03-19 09:51:01 +03:00

11 lines
157 B
Kotlin
Vendored

object Outer {
val x = 0
fun Nested.foo() {}
class Nested {
val y = x
fun test() {
foo()
}
}
}