mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
11 lines
138 B
Kotlin
Vendored
11 lines
138 B
Kotlin
Vendored
//ALLOW_AST_ACCESS
|
|
|
|
package test
|
|
class Controller {
|
|
suspend fun suspendFun() {}
|
|
}
|
|
|
|
fun builder(c: suspend Controller.() -> Unit) {
|
|
|
|
}
|