Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/canDeclareIfSamAdapterIsInherited.kt
T

13 lines
175 B
Kotlin
Vendored

// FIR_IDENTICAL
// FILE: Super.java
public class Super {
void foo(Runnable r) {
}
}
// FILE: Sub.kt
class Sub() : Super() {
fun foo(r : (() -> Unit)?) {
}
}