mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
10 lines
102 B
Kotlin
Vendored
10 lines
102 B
Kotlin
Vendored
//KT-2382
|
|
|
|
interface T {
|
|
final fun foo() = "OK"
|
|
}
|
|
|
|
class S : T { }
|
|
|
|
fun box(): String = S().foo()
|