10 lines
130 B
Kotlin
Vendored
10 lines
130 B
Kotlin
Vendored
internal object Outer {
|
|
var o: Any? = Object()
|
|
|
|
class Nested {
|
|
fun foo() {
|
|
o = null
|
|
}
|
|
}
|
|
}
|