Files
kotlin-fork/compiler/testData/ir/irText/classes/kt19306.kt
T
2020-12-23 21:50:06 +03:00

17 lines
224 B
Kotlin
Vendored

// SKIP_KT_DUMP
// FILE: kt19306_test1.kt
package test1
abstract class A {
protected var p = ""
private set
}
// FILE: kt19306_test2.kt
package test2
import test1.A
class B : A() {
fun test() = { -> p }
}