daaa59a1ad
#KT-16991 Fixed #KT-13013 In Progress
21 lines
229 B
Plaintext
Vendored
21 lines
229 B
Plaintext
Vendored
// FILE: before.kt
|
|
interface Foo
|
|
|
|
fun foo(a: Foo.() -> Unit) {}
|
|
|
|
fun bar() {
|
|
foo {
|
|
<caret>this
|
|
}
|
|
}
|
|
|
|
// FILE: after.kt
|
|
interface Foo
|
|
|
|
fun foo(a: Foo.() -> Unit) {}
|
|
|
|
fun bar() {
|
|
foo <caret>{
|
|
this
|
|
}
|
|
} |