Files
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>