Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/kt28306.kt
T

9 lines
146 B
Kotlin
Vendored

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