Files
kotlin/compiler/testData/codegen/boxWithJava/trait/interfaceInheritance.kt
Michael Bogdanov 2a1520228e Support inheritance from java 8 interfaces
#KT-5969 In Progress
2014-10-11 13:53:43 +04:00

11 lines
147 B
Kotlin

trait A : MyInt {
override public fun test(): String? {
return "OK"
}
}
class B: A
fun box() : String {
return B().test()!!
}