Files
kotlin/compiler/testData/codegen/java8/boxWithJava/defaultMethodCallViaTrait/defaultMethodCallViaTrait.kt
2015-05-12 19:43:17 +02:00

9 lines
189 B
Kotlin

interface TestTrait : Simple {}
class Test : TestTrait {}
fun box(): String {
val test = Test().test("O")
if (test != "OK") return "fail $test"
return Simple.testStatic("O")
}