Files
kotlin/compiler/testData/loadJava/compiledKotlin/coroutines/Basic.kt
2019-11-07 13:48:43 +01:00

11 lines
139 B
Kotlin
Vendored

// ALLOW_AST_ACCESS
package test
class Controller {
suspend fun suspendFun() {}
}
fun builder(c: suspend Controller.() -> Unit) {
}