Files
kotlin-fork/compiler/testData/diagnostics/tests/subtyping/kt304.kt
T
2012-07-25 14:00:01 +04:00

7 lines
145 B
Kotlin
Vendored

//KT-304: Resolve supertype reference to class anyway
open class Foo() : <!WRONG_NUMBER_OF_TYPE_ARGUMENTS!>Bar<!>() {
}
open class Bar<T>() {
}