6 lines
140 B
Kotlin
Vendored
6 lines
140 B
Kotlin
Vendored
// "Migrate unsupported async syntax" "true"
|
|
infix fun Any.async(f: () -> Unit) = f()
|
|
|
|
fun test(foo: Any) {
|
|
foo async<caret> fun () {}
|
|
} |