Files
kotlin-fork/compiler/testData/codegen/traits/finalMethod.kt
T
2013-01-24 21:12:27 +04:00

10 lines
98 B
Kotlin

//KT-2382
trait T {
final fun foo() = "OK"
}
class S : T { }
fun box(): String = S().foo()