Files
kotlin/compiler/testData/codegen/java8/boxWithJava/defaultMethodCallViaClass/defaultCall.kt
2015-05-13 14:52:18 +03:00

8 lines
154 B
Kotlin
Vendored

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