2a1520228e
#KT-5969 In Progress
11 lines
147 B
Kotlin
11 lines
147 B
Kotlin
trait A : MyInt {
|
|
override public fun test(): String? {
|
|
return "OK"
|
|
}
|
|
}
|
|
|
|
class B: A
|
|
|
|
fun box() : String {
|
|
return B().test()!!
|
|
} |