3ebeca5852
KT-44278 KT-26060 KT-42621
17 lines
245 B
Kotlin
Vendored
17 lines
245 B
Kotlin
Vendored
// FILE: JFoo.java
|
|
|
|
public class JFoo {
|
|
public static void foo(Runnable f) {
|
|
f.run();
|
|
}
|
|
}
|
|
|
|
// FILE: Test.kt
|
|
fun test() {
|
|
JFoo.foo({})
|
|
}
|
|
|
|
// Lambda inlined into run(), no wrapper class generated:
|
|
// 0 NEW
|
|
// 0 INVOKEINTERFACE
|