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