bb808b5620
Moved tests for completion and their test data into module idea-completion
10 lines
121 B
Kotlin
Vendored
10 lines
121 B
Kotlin
Vendored
class Foo {
|
|
fun Int.bar() = this
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val v = Foo()
|
|
v.<caret>
|
|
}
|
|
|
|
// ABSENT: bar |