mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-05 15:52:05 +00:00
18 lines
528 B
Plaintext
18 lines
528 B
Plaintext
package test
|
|
|
|
public trait WrongNumberOfGenericParameters {
|
|
public abstract fun o0(): test.WrongNumberOfGenericParameters.One<out kotlin.Any?>!
|
|
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 z(): test.WrongNumberOfGenericParameters.Zero!
|
|
|
|
public trait One</*0*/ T> {
|
|
}
|
|
|
|
public trait Two</*0*/ P, /*1*/ Q> {
|
|
}
|
|
|
|
public trait Zero {
|
|
}
|
|
}
|