K1/K2: add test confirming the behavior of KT-61694 case

This commit is contained in:
Mikhail Glukhikh
2023-12-12 19:00:17 +01:00
committed by Space Team
parent 20f74c22d7
commit 7c53387fc4
7 changed files with 62 additions and 0 deletions
@@ -0,0 +1,16 @@
// ISSUE: KT-61694
// FILE: a.kt
package c
class C {
class Nested
}
typealias TA = C
// FILE: b.kt
import c.TA.Nested
val x: <!UNRESOLVED_REFERENCE!>Nested<!>? = null
@@ -0,0 +1,16 @@
// ISSUE: KT-61694
// FILE: a.kt
package c
class C {
class Nested
}
typealias TA = C
// FILE: b.kt
import c.TA.Nested
val x: Nested? = null