Files
kotlin-fork/compiler/testData/codegen/box/traits/kt5495.kt
T
2014-10-07 17:21:10 +04:00

9 lines
105 B
Kotlin

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