Files
kotlin-fork/idea/testData/quickfix/asyncUnsupported/asyncWithTimes.kt
T
2015-12-21 07:15:37 +03:00

9 lines
145 B
Kotlin
Vendored

// "Migrate unsupported async syntax" "true"
object async {
operator fun times(f: () -> Unit) = f()
}
fun test() {
asy<caret>nc* { }
}