20e36438e2
Move those tests which do not require neither stdlib nor reflect
10 lines
140 B
Kotlin
Vendored
10 lines
140 B
Kotlin
Vendored
class Shape(var result: String) {
|
|
|
|
}
|
|
|
|
fun box(): String {
|
|
var a : Shape? = Shape("fail");
|
|
a?.result = "OK";
|
|
|
|
return a!!.result
|
|
} |