Fir2Ir: handle nested class references in type parameter bounds
This commit is contained in:
committed by
Alexander Udalov
parent
9fb1a901cf
commit
49576e0cbb
+10
@@ -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
|
||||
Reference in New Issue
Block a user