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

10 lines
102 B
Kotlin
Vendored

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