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