Files
kotlin/compiler/testData/loadJava/sourceJava/WrongNumberOfGenericParameters.txt
Denis Zharkov 41d4af2cb9 Implement rendering of raw types
Also add some clarification in spec
2015-08-06 08:18:18 +03:00

18 lines
592 B
Plaintext
Vendored

package test
public interface WrongNumberOfGenericParameters {
public abstract fun o0(): test.WrongNumberOfGenericParameters.One<(raw) kotlin.Any!>!
public abstract fun o2(): test.WrongNumberOfGenericParameters.One<[ERROR : T]>!
public abstract fun t1(): test.WrongNumberOfGenericParameters.Two<(raw) kotlin.Any!, (raw) kotlin.Any!>!
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 {
}
}