11 lines
157 B
Kotlin
Vendored
11 lines
157 B
Kotlin
Vendored
object Outer {
|
|
val x = 0
|
|
fun Nested.foo() {}
|
|
class Nested {
|
|
val y = x
|
|
fun test() {
|
|
foo()
|
|
}
|
|
}
|
|
}
|