mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
18 lines
486 B
Plaintext
18 lines
486 B
Plaintext
package test
|
|
|
|
public trait 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 trait One</*0*/ T> {
|
|
}
|
|
|
|
public trait Two</*0*/ P, /*1*/ Q> {
|
|
}
|
|
|
|
public trait Zero {
|
|
}
|
|
}
|