33e6a85a2d
We exclude testData pattern from copyright scope
22 lines
269 B
Kotlin
Vendored
22 lines
269 B
Kotlin
Vendored
class Builder {
|
|
var version: String = ""
|
|
|
|
fun execute() {
|
|
println(version)
|
|
}
|
|
}
|
|
|
|
fun build(action: Builder.() -> Unit) = Builder().apply(action)
|
|
|
|
build {
|
|
version = "123"
|
|
class A {
|
|
fun do<caret>o() {
|
|
|
|
}
|
|
}
|
|
|
|
execute()
|
|
}
|
|
|