FIR: use more specific cone error for unresolved user type ref
replaces diagnostic with <No name> with specific qualifier
This commit is contained in:
+2
-2
@@ -22,8 +22,8 @@ FILE: upperBoundViolated.kt
|
||||
lval b1: R|B<kotlin/Int>| = R|/B.B|<R|kotlin/Int|>()
|
||||
lval b2: R|B<C>| = R|/B.B|<R|C|>()
|
||||
lval b3: R|B<kotlin/Any?>| = R|/B.B|<R|kotlin/Any?|>()
|
||||
lval b4: R|B<A>| = R|/B.B|<<ERROR TYPE REF: Symbol not found, for `UnexistingType`>>()
|
||||
lval b5: R|B<B<ERROR CLASS: Symbol not found, for `UnexistingType`>>| = R|/B.B|<R|B<ERROR CLASS: Symbol not found, for `UnexistingType`>|>()
|
||||
lval b4: R|B<A>| = R|/B.B|<<ERROR TYPE REF: Symbol not found for UnexistingType>>()
|
||||
lval b5: R|B<B<ERROR CLASS: Symbol not found for UnexistingType>>| = R|/B.B|<R|B<ERROR CLASS: Symbol not found for UnexistingType>|>()
|
||||
R|/fest|<R|kotlin/Boolean|>()
|
||||
R|/fest|<R|C|>()
|
||||
R|/fest|<R|C|>()
|
||||
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
FILE: fakeRecursiveTypealias.kt
|
||||
public final typealias My = <ERROR TYPE REF: Symbol not found, for `incorrect.directory.My`>
|
||||
public final typealias My = <ERROR TYPE REF: Symbol not found for incorrect.directory.My>
|
||||
public final typealias Your = <ERROR TYPE REF: Loop in supertype: /Your -> /Your>
|
||||
|
||||
+1
-1
@@ -28,7 +28,7 @@ FILE: main.kt
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
public abstract fun createTest(): <ERROR TYPE REF: Symbol not found, for `Test`>
|
||||
public abstract fun createTest(): <ERROR TYPE REF: Symbol not found for Test>
|
||||
|
||||
public abstract fun createObj(): R|test/Test.O|
|
||||
|
||||
|
||||
+1
-1
@@ -92,7 +92,7 @@ FILE: exposedSupertype.kt
|
||||
}
|
||||
|
||||
}
|
||||
public final class Test7 : <ERROR TYPE REF: Symbol not found, for `D.PublicButProtected`> {
|
||||
public final class Test7 : <ERROR TYPE REF: Symbol not found for D.PublicButProtected> {
|
||||
public constructor(): R|Test7| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
+2
-2
@@ -4,9 +4,9 @@ FILE: K1.kt
|
||||
super<R|J1|>()
|
||||
}
|
||||
|
||||
public final class Q : <ERROR TYPE REF: Symbol not found, for `Nested`> {
|
||||
public final class Q : <ERROR TYPE REF: Symbol not found for Nested> {
|
||||
public constructor(): R|K2.Q| {
|
||||
super<<ERROR TYPE REF: Symbol not found, for `Nested`>>()
|
||||
super<<ERROR TYPE REF: Symbol not found for Nested>>()
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user