41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
13 lines
143 B
Kotlin
13 lines
143 B
Kotlin
trait A {
|
|
val v: Int
|
|
}
|
|
|
|
class AImpl : A {
|
|
override val v: Int = 5
|
|
}
|
|
|
|
public fun box() : String {
|
|
(AImpl() : A).v
|
|
return "OK"
|
|
}
|