Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/sam/reusedSamWrapperClasses.kt
T

18 lines
246 B
Kotlin
Vendored

// WITH_RUNTIME
class A {
fun test1() {
val f = { }
val t1 = Runnable(f)
val t2 = Runnable(f)
}
}
class B {
fun test2() {
val f = { }
val t1 = Runnable(f)
val t2 = Runnable(f)
}
}