bb808b5620
Moved tests for completion and their test data into module idea-completion
12 lines
180 B
Kotlin
Vendored
12 lines
180 B
Kotlin
Vendored
class Outer {
|
|
class Nested
|
|
inner class Inner
|
|
}
|
|
|
|
fun Outer.foo() {
|
|
<caret>
|
|
}
|
|
|
|
// ABSENT: Nested
|
|
// EXIST: { itemText: "Inner", tailText: "()", typeText: "Outer.Inner" }
|