e052a64767
#KT-4819 Fixed
17 lines
222 B
Kotlin
Vendored
17 lines
222 B
Kotlin
Vendored
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)
|
|
}
|
|
} |