Files
kotlin-fork/compiler/testData/diagnostics/tests/traitWithRequired/uninheritableTraitDifferentGenericArguments.kt
T
2015-05-12 19:43:17 +02:00

8 lines
198 B
Kotlin
Vendored

open class Generic<T>
interface A : <!TRAIT_WITH_SUPERCLASS!>Generic<String><!>
interface B : <!TRAIT_WITH_SUPERCLASS!>Generic<Int><!>
interface C : <!INCONSISTENT_TYPE_PARAMETER_VALUES!>A, B<!>