mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-14 00:21:27 +00:00
18 lines
544 B
Plaintext
Vendored
18 lines
544 B
Plaintext
Vendored
package test
|
|
|
|
public interface WrongNumberOfGenericParameters {
|
|
public abstract fun o0(): test.WrongNumberOfGenericParameters.One<*>!
|
|
public abstract fun o2(): test.WrongNumberOfGenericParameters.One<[ERROR : T]>!
|
|
public abstract fun t1(): 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 {
|
|
}
|
|
}
|