blob: 0a4249b85208dc4594626dfbbf7c0f1542ac6e3d [file] [log] [blame]
class A {
val value : Int = 0
}
fun foo(body: A.() -> Unit) {}
fun bar() {
foo {
print(<selection>value</selection>)
print(value)
}
foo {
print(value)
print(value)
}
}