irText tests for KT-19306

This commit is contained in:
Dmitry Petrov
2020-12-23 14:04:24 +03:00
committed by TeamCityServer
parent 9f908cdf7c
commit 0841a6b0ea
8 changed files with 187 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
// 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 }
}