Fir2Ir: handle nested class references in type parameter bounds

This commit is contained in:
Georgy Bronnikov
2022-04-23 20:07:06 +03:00
committed by Alexander Udalov
parent 9fb1a901cf
commit 49576e0cbb
8 changed files with 50 additions and 0 deletions
@@ -0,0 +1,10 @@
// MODULE: lib
// FILE: Q.kt
class Q<T : Q.S> {
open class S {
val ok = "OK"
}
}
// MODULE: main(lib)
// FILE: box.kt
fun box() = Q.S().ok