9 lines
146 B
Kotlin
Vendored
9 lines
146 B
Kotlin
Vendored
// CORRECT_ERROR_TYPES
|
|
|
|
package foo
|
|
|
|
interface InterfaceWithDefaults<T> {
|
|
fun foo() {}
|
|
}
|
|
|
|
interface SubInterface<T> : InterfaceWithDefaults<T> |