7ba1371466
^KT-38444 In Progress
10 lines
156 B
Kotlin
Vendored
10 lines
156 B
Kotlin
Vendored
interface A
|
|
|
|
fun test_1(a: A?, convert: A.() -> String) {
|
|
val s = a?.convert()
|
|
}
|
|
|
|
fun test_2(a: A, convert: A.() -> String) {
|
|
val s = a.convert()
|
|
}
|