Files
kotlin-fork/analysis/analysis-api/testData/scopes/delegatedMemberScope/propertyWithGetter.kt
T
2022-10-17 14:59:45 +00:00

13 lines
134 B
Kotlin
Vendored

// DO_NOT_CHECK_SYMBOL_RESTORE_K1
interface I {
val foo: Int get() = 2
}
class A(
private val p: I
) : I by p
// class: A