13 lines
175 B
Kotlin
Vendored
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)?) {
|
|
}
|
|
}
|