18 lines
246 B
Kotlin
Vendored
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)
|
|
}
|
|
}
|