Files
kotlin-fork/libraries/tools/kotlinp/testData/Delegation.kt
T
Mads Ager 04a088039c [K2] Add support for running Kotlinp tests with K2.
The tests fail spectacularly at this point in time.
2023-03-17 07:15:12 +00:00

7 lines
57 B
Kotlin
Vendored

interface I {
fun foo()
}
class A(i: I): I by i {
}