Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/kt28306.kt
T
2022-02-08 20:15:13 +01:00

10 lines
147 B
Kotlin
Vendored

// CORRECT_ERROR_TYPES
package foo
interface InterfaceWithDefaults<T> {
fun foo() {}
}
interface SubInterface<T> : InterfaceWithDefaults<T>