Regenerate test data with constructed descriptors for diagnostics tests
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package
|
||||
|
||||
package b {
|
||||
internal fun bar(/*0*/ l: kotlin.List<kotlin.Int>): kotlin.List<kotlin.Int>
|
||||
internal fun test(/*0*/ a: b.A): kotlin.Unit
|
||||
|
||||
internal final class A {
|
||||
public constructor A()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
internal final fun </*0*/ T> get(/*0*/ i: kotlin.Int): kotlin.List<T>
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
package
|
||||
|
||||
package h {
|
||||
internal fun </*0*/ T> id(/*0*/ t: T): T
|
||||
internal fun </*0*/ T> newA(): h.A<T>
|
||||
internal fun test(/*0*/ z: h.Z): kotlin.Unit
|
||||
internal fun test1(/*0*/ z: h.Z): kotlin.Unit
|
||||
internal fun test2(/*0*/ z: h.Z): kotlin.Unit
|
||||
internal fun test3(/*0*/ z: h.Z): kotlin.Unit
|
||||
internal fun test4(/*0*/ collection: kotlin.Collection<h.A<out kotlin.Any?>>): kotlin.Unit
|
||||
internal fun test5(): kotlin.Unit
|
||||
internal fun </*0*/ T> toBeOrNot(): kotlin.Boolean
|
||||
internal fun use(/*0*/ vararg a: kotlin.Any? /*kotlin.Array<kotlin.Any?>*/): kotlin.Array<kotlin.Any?>
|
||||
internal fun </*0*/ T> h.Z.compareTo(/*0*/ a: h.A<T>): kotlin.Int
|
||||
internal fun h.Z.equals(/*0*/ any: kotlin.Any): kotlin.Int
|
||||
internal fun </*0*/ T> h.Z.foo(/*0*/ a: h.A<T>): h.A<T>
|
||||
internal fun </*0*/ T> h.Z.plus(/*0*/ a: h.A<T>): h.A<T>
|
||||
|
||||
internal trait A</*0*/ T> {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal trait Z {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
internal fun foo(/*0*/ s: kotlin.String): kotlin.String
|
||||
internal fun test(/*0*/ c: a.C): kotlin.Unit
|
||||
|
||||
internal final class C {
|
||||
public constructor C(/*0*/ b: kotlin.Int)
|
||||
internal final val b: kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package
|
||||
|
||||
internal fun </*0*/ T> foo(/*0*/ t: T): T
|
||||
internal fun test(/*0*/ map: kotlin.MutableMap<kotlin.Int, kotlin.Int>, /*1*/ t: kotlin.Int): kotlin.Unit
|
||||
internal fun </*0*/ K, /*1*/ V> kotlin.MutableMap<K, V>.set(/*0*/ key: K, /*1*/ value: V): V?
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
public fun </*0*/ T> kotlin.Iterable<T>.withIndices(): kotlin.List<a.Pair<kotlin.Int, T>>
|
||||
|
||||
public final class Pair</*0*/ out A, /*1*/ out B> {
|
||||
public constructor Pair</*0*/ out A, /*1*/ out B>(/*0*/ first: A, /*1*/ second: B)
|
||||
public final val first: A
|
||||
public final val second: B
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
package
|
||||
|
||||
package j {
|
||||
internal fun foo(/*0*/ a: j.A): kotlin.Unit
|
||||
internal fun </*0*/ R> id(/*0*/ r: R): R
|
||||
|
||||
internal final class A {
|
||||
public constructor A(/*0*/ b: j.B)
|
||||
internal final val b: j.B
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal final class B {
|
||||
public constructor B()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
internal final fun </*0*/ T> invoke(/*0*/ f: (T) -> T): j.MyFunc<T>
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal trait MyFunc</*0*/ T> {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package
|
||||
|
||||
package aaa {
|
||||
internal fun a(): kotlin.Unit
|
||||
internal fun </*0*/ T> id(/*0*/ t: T): T
|
||||
internal fun </*0*/ T> T.foo(/*0*/ t: T): T
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package
|
||||
|
||||
package b {
|
||||
internal fun </*0*/ T> foo(/*0*/ t: T): T
|
||||
internal fun </*0*/ K, /*1*/ V> mapOf(/*0*/ vararg values: b.Pair<K, V> /*kotlin.Array<b.Pair<K, V>>*/): kotlin.Map<K, V>
|
||||
internal fun println(/*0*/ message: kotlin.Any?): kotlin.Unit
|
||||
public fun </*0*/ T> query(/*0*/ t: T, /*1*/ args: kotlin.Map<kotlin.String, kotlin.Any>): kotlin.List<T>
|
||||
internal fun test(/*0*/ pair: b.Pair<kotlin.String, kotlin.Int>): kotlin.Unit
|
||||
internal fun test(/*0*/ t: kotlin.String): kotlin.Unit
|
||||
internal fun </*0*/ A, /*1*/ B> A.to(/*0*/ that: B): b.Pair<A, B>
|
||||
|
||||
internal final class Pair</*0*/ out A, /*1*/ out B> {
|
||||
public constructor Pair</*0*/ out A, /*1*/ out B>()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
internal fun foo(/*0*/ s: kotlin.String): kotlin.Unit
|
||||
internal fun r(): kotlin.Int?
|
||||
internal fun test(): kotlin.Unit
|
||||
|
||||
internal final class F {
|
||||
public constructor F()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
internal final fun p(): kotlin.String?
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
internal fun doInt(/*0*/ i: kotlin.Int): kotlin.Int
|
||||
internal fun test(/*0*/ a: a.A?): kotlin.Unit
|
||||
internal fun test(/*0*/ u: a.A?, /*1*/ x: a.A?, /*2*/ y: a.A?, /*3*/ z: a.A?, /*4*/ w: a.A, /*5*/ v: a.A?): kotlin.Unit
|
||||
internal fun a.B?.bar(): kotlin.Int
|
||||
internal fun a.B?.baz(): kotlin.Int?
|
||||
|
||||
internal trait A {
|
||||
internal abstract val b: a.B
|
||||
internal abstract val nb: a.B?
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal trait B {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
internal abstract fun foo(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
internal fun bar(/*0*/ a: kotlin.Any): kotlin.Any
|
||||
internal fun bar(/*0*/ i: kotlin.Int): kotlin.Int
|
||||
internal fun </*0*/ T> emptyList(): kotlin.List<T>
|
||||
internal fun foo(/*0*/ l: kotlin.List<kotlin.Int>): kotlin.Int
|
||||
internal fun </*0*/ T : kotlin.Any> makeNullable(/*0*/ t: T): T?
|
||||
internal fun test(/*0*/ array: kotlin.Array<kotlin.Int>): kotlin.Unit
|
||||
}
|
||||
Reference in New Issue
Block a user