ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
11 lines
173 B
Kotlin
Vendored
11 lines
173 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// CORRECT_ERROR_TYPES
|
|
|
|
package foo
|
|
|
|
interface InterfaceWithDefaults<T> {
|
|
fun foo() {}
|
|
}
|
|
|
|
interface SubInterface<T> : InterfaceWithDefaults<T>
|