Files
kotlin/compiler/testData/loadJava/sourceJava/WrongNumberOfGenericParameters.txt
Denis Zharkov 6b92f67eac Load raw types as platform with specific bounds
Raw(A<T_i>) = (A<UP(T_i)>..A<*>)
Raw types have specific scopes that behaves like JVM signature erasure
2015-07-31 17:33:21 +03:00

18 lines
669 B
Plaintext
Vendored

package test
public interface WrongNumberOfGenericParameters {
public abstract fun o0(): (test.WrongNumberOfGenericParameters.One<kotlin.Any!>..test.WrongNumberOfGenericParameters.One<*>?)
public abstract fun o2(): test.WrongNumberOfGenericParameters.One<[ERROR : T]>!
public abstract fun t1(): (test.WrongNumberOfGenericParameters.Two<kotlin.Any!, kotlin.Any!>..test.WrongNumberOfGenericParameters.Two<*, *>?)
public abstract fun z(): test.WrongNumberOfGenericParameters.Zero!
public interface One</*0*/ T : kotlin.Any!> {
}
public interface Two</*0*/ P : kotlin.Any!, /*1*/ Q : kotlin.Any!> {
}
public interface Zero {
}
}