Files
2020-06-19 11:57:35 +02:00

11 lines
175 B
Kotlin
Vendored

// FIR_IDENTICAL
// !JVM_TARGET: 1.8
// !JVM_DEFAULT_MODE: all-compatibility
@JvmDefaultWithoutCompatibility
interface A<T> {
fun test(p: T) {}
}
class B : A<String> {}