Files
kotlin-fork/compiler/testData/codegen/boxAgainstJava/sam/smartCastSamConversion.kt
T
2021-01-11 12:01:48 +03:00

23 lines
325 B
Kotlin
Vendored

// FILE: test.kt
fun test(a: Any) {
a as (String) -> String
J.use(a)
}
fun box(): String {
test({s: String? -> s})
return "OK"
}
// FILE: JFoo.java
public interface JFoo<T> {
T foo(T x);
}
// FILE: J.java
public class J {
public static void use(JFoo<String> jfoo) {
jfoo.foo(null);
}
}