Files
kotlin-fork/compiler/testData/codegen/bytecodeText/sam/samWrapperPrivateFinalSyntheticField.kt
T
2020-11-19 19:46:49 +01:00

16 lines
238 B
Kotlin
Vendored

// FILE: J.java
public class J {
public static void g(Runnable r) {
r.run();
}
}
// FILE: test.kt
fun f() {
val r: () -> Unit = {}
J.g(r)
}
// 1 private final synthetic Lkotlin/jvm/functions/Function0; function