41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
14 lines
138 B
Kotlin
14 lines
138 B
Kotlin
class D {
|
|
var foo = 1
|
|
private set
|
|
|
|
fun foo() {
|
|
foo = 2
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
D().foo()
|
|
return "OK"
|
|
}
|