Files
kotlin-fork/compiler/testData/diagnostics/tests/samConversions/kt17765.fir.kt
T
2021-11-22 14:18:30 +03:00

13 lines
240 B
Kotlin
Vendored

// FILE: Test.java
public class Test {
interface MyRunnable extends Runnable {}
public static void foo(MyRunnable r) {}
public static void foo(Runnable r) {}
}
// FILE: 1.kt
fun main(args: Array<String>) {
Test.foo { }
}