Fixed test data
This commit is contained in:
@@ -59,9 +59,9 @@ package foobar {
|
||||
|
||||
package foobar.a {
|
||||
internal val a: java.util.List<kotlin.Int>? = null
|
||||
internal val a2: [ERROR : util.List<Int>]?
|
||||
internal val a3: [ERROR : ArrayList<Int>]?
|
||||
internal val a2: [ERROR : util.List<Int>]<kotlin.Int>?
|
||||
internal val a3: [ERROR : ArrayList<Int>]<kotlin.Int>?
|
||||
internal val b: kotlin.List<kotlin.Int>? = null
|
||||
internal val b1: [ERROR : util.List<Int>]?
|
||||
internal val b1: [ERROR : util.List<Int>]<kotlin.Int>?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ val n2 = <!CLASS_LITERAL_LHS_NOT_A_CLASS!>A.Nested<*>::class<!>
|
||||
|
||||
val i1 = A.Inner::class
|
||||
val i2 = <!CLASS_LITERAL_LHS_NOT_A_CLASS!>A<*>.Inner<*>::class<!>
|
||||
val i3 = <!CLASS_LITERAL_LHS_NOT_A_CLASS!>A<<!DEBUG_INFO_MISSING_UNRESOLVED!>Int<!>>.Inner<CharSequence>::class<!>
|
||||
val i3 = <!CLASS_LITERAL_LHS_NOT_A_CLASS!>A<Int>.Inner<CharSequence>::class<!>
|
||||
|
||||
val m1 = Map::class
|
||||
val m2 = <!CLASS_LITERAL_LHS_NOT_A_CLASS!>Map<Int, *>::class<!>
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
package
|
||||
|
||||
internal fun </*0*/ T> f1(/*0*/ l: [ERROR : List1<T>]): T
|
||||
internal fun </*0*/ T> f1(/*0*/ l: [ERROR : List2<T>]): T
|
||||
internal fun </*0*/ T> f1(/*0*/ l: [ERROR : List1<T>]<T>): T
|
||||
internal fun </*0*/ T> f1(/*0*/ l: [ERROR : List2<T>]<T>): T
|
||||
internal fun </*0*/ T> f1(/*0*/ c: kotlin.Collection<T>): T
|
||||
internal fun </*0*/ T> test(/*0*/ l: kotlin.List<T>): kotlin.Unit
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
val foo: List<adad<List<dd>>> = null!!
|
||||
/*
|
||||
psi: List<adad<List<dd>>>
|
||||
type: List<[ERROR : adad<List<dd>>]>
|
||||
type: List<[ERROR : adad<List<dd>>]<List<[ERROR : dd]>>>
|
||||
typeParameter: <out E> defined in kotlin.List
|
||||
typeProjection: [ERROR : adad<List<dd>>]
|
||||
typeProjection: [ERROR : adad<List<dd>>]<List<[ERROR : dd]>>
|
||||
psi: adad<List<dd>>
|
||||
type: [ERROR : adad<List<dd>>]
|
||||
type: [ERROR : adad<List<dd>>]<List<[ERROR : dd]>>
|
||||
typeParameter: null
|
||||
typeProjection: List<[ERROR : dd]>
|
||||
psi: List<dd>
|
||||
|
||||
Reference in New Issue
Block a user