bb808b5620
Moved tests for completion and their test data into module idea-completion
15 lines
278 B
Kotlin
Vendored
15 lines
278 B
Kotlin
Vendored
object X {
|
|
fun accept1(handler: String.() -> Unit){}
|
|
fun accept2(handler: Int.() -> Unit){}
|
|
}
|
|
|
|
fun foo(){
|
|
X.accept1({
|
|
X.accept2({
|
|
val s: String = <caret>
|
|
})
|
|
})
|
|
}
|
|
|
|
// EXIST: this@accept1
|