15 lines
177 B
Kotlin
Vendored
15 lines
177 B
Kotlin
Vendored
//KT-2206
|
|
|
|
interface A {
|
|
var a:Int
|
|
get() = 239
|
|
set(value) {
|
|
}
|
|
}
|
|
|
|
class B() : A
|
|
|
|
fun box() : String {
|
|
return if (B().a == 239) "OK" else "fail"
|
|
}
|