Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
classes
/
kt19306.kt
blob: 5cd77ac481acca2f71f4933927053e6902a889b9 [
file
]
// FIR_IDENTICAL
// 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
}
}