33e6a85a2d
We exclude testData pattern from copyright scope
15 lines
244 B
Kotlin
Vendored
15 lines
244 B
Kotlin
Vendored
// RESOLVE_SCRIPT
|
|
|
|
class Builder {
|
|
var version: String = ""
|
|
}
|
|
|
|
fun build(action: Builder.() -> Unit) = Builder().apply(action)
|
|
|
|
val builder = build {
|
|
version = "321"
|
|
}
|
|
|
|
@Suppress("abc") @Deprecated("it is deprecated")
|
|
builder.execute()
|