Serializing information about star projections
This commit is contained in:
@@ -5,7 +5,7 @@ public trait ReturnNotSubtype {
|
||||
public trait Sub : test.ReturnNotSubtype.Super<kotlin.Boolean!> {
|
||||
public abstract override /*1*/ fun _void(): kotlin.Boolean
|
||||
public abstract override /*1*/ fun array(): kotlin.Array<(out) java.lang.Void!>!
|
||||
public abstract override /*1*/ fun klass(): java.lang.Class<out kotlin.Any?>!
|
||||
public abstract override /*1*/ fun klass(): java.lang.Class<*>!
|
||||
public abstract override /*1*/ fun string1(): kotlin.Unit
|
||||
public abstract override /*1*/ fun string2(): kotlin.(Mutable)List<kotlin.Boolean!>!
|
||||
public abstract override /*1*/ fun t(): java.lang.Void!
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
public trait WrongNumberOfGenericParameters {
|
||||
public abstract fun o0(): test.WrongNumberOfGenericParameters.One<out kotlin.Any?>!
|
||||
public abstract fun o0(): test.WrongNumberOfGenericParameters.One<*>!
|
||||
public abstract fun o2(): test.WrongNumberOfGenericParameters.One<[ERROR : T]>!
|
||||
public abstract fun t1(): test.WrongNumberOfGenericParameters.Two<out kotlin.Any?, out kotlin.Any?>!
|
||||
public abstract fun t1(): test.WrongNumberOfGenericParameters.Two<*, *>!
|
||||
public abstract fun z(): test.WrongNumberOfGenericParameters.Zero!
|
||||
|
||||
public trait One</*0*/ T> {
|
||||
|
||||
Reference in New Issue
Block a user