Files
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()
}
}
}