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

9 lines
109 B
Kotlin
Vendored

fun box(): String {
interface A {
fun foo() = "OK"
}
class B : A
return B().foo()
}