Files
kotlin/compiler/testData/asJava/lightClasses/delegation/Function.kt
2015-05-12 19:43:17 +02:00

7 lines
96 B
Kotlin
Vendored

// Derived
interface Base {
fun baz(s: String): String
}
class Derived(x: Base): Base by x