f19eb20803
#KT-5287 Fixed
10 lines
142 B
Kotlin
Vendored
10 lines
142 B
Kotlin
Vendored
object Outer {
|
|
public var o: Any? = Object()
|
|
|
|
public class Nested {
|
|
public fun foo() {
|
|
o = null
|
|
}
|
|
}
|
|
}
|