Files
kotlin-fork/compiler/testData/codegen/box/traits/inheritedFun.kt
T
2015-05-12 19:43:17 +02:00

11 lines
135 B
Kotlin
Vendored

//KT-2206
interface A {
fun f():Int = 239
}
class B() : A
fun box() : String {
return if (B().f() == 239) "OK" else "fail"
}