3438d19c22
KT-44278 KT-26060 KT-42621
19 lines
299 B
Kotlin
Vendored
19 lines
299 B
Kotlin
Vendored
// KOTLIN_CONFIGURATION_FLAGS: SAM_CONVERSIONS=CLASS
|
|
// 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)
|
|
}
|
|
}
|