9 lines
145 B
Kotlin
Vendored
9 lines
145 B
Kotlin
Vendored
// "Migrate unsupported yield syntax" "true"
|
|
object yield {
|
|
operator fun invoke(f: () -> Unit) = f()
|
|
}
|
|
|
|
fun test() {
|
|
yie<caret>ld { }
|
|
}
|