827d9d48c1
#KT-5452 Fixed
9 lines
216 B
Kotlin
Vendored
9 lines
216 B
Kotlin
Vendored
var status: String = "fail" // global property to avoid issues with accessing closure from local class (KT-4174)
|
|
|
|
fun box(): String {
|
|
class C() : JavaClass({status = "OK"}) {}
|
|
C().run()
|
|
return status
|
|
}
|
|
|