Files
kotlin-fork/analysis/analysis-api/testData/scopes/delegatedMemberScope/simple.kt
T
2021-10-27 17:06:32 +02:00

13 lines
118 B
Kotlin
Vendored

// DO_NOT_CHECK_SYMBOL_RESTORE
interface I {
fun foo()
}
class A(
private val p: I
) : I by p
// class: A