Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/canDeclareIfSamAdapterIsInherited.kt
T
Valentin Kipyatkov 4c0404ea82 Changes on code review
2015-08-04 18:05:57 +03:00

11 lines
173 B
Kotlin
Vendored

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