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

11 lines
157 B
Kotlin
Vendored

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