20e36438e2
Move those tests which do not require neither stdlib nor reflect
12 lines
144 B
Kotlin
Vendored
12 lines
144 B
Kotlin
Vendored
class A (val p: String) {
|
|
|
|
val _kind: String = "$p"
|
|
|
|
}
|
|
|
|
fun box(): String {
|
|
|
|
if (A("OK")._kind != "OK") return "fail"
|
|
|
|
return "OK"
|
|
} |