Files
kotlin-fork/compiler/testData/codegen/box/properties/kt3930.kt
T

17 lines
263 B
Kotlin
Vendored

public abstract class Foo {
var isOpen = true
private set
}
public class Bar: Foo() {
inner class Baz {
fun call() {
val s = this@Bar
s.isOpen
}
}
}
fun box(): String {
Bar().Baz()
return "OK"
}