bb808b5620
Moved tests for completion and their test data into module idea-completion
10 lines
162 B
Plaintext
Vendored
10 lines
162 B
Plaintext
Vendored
class Outer {
|
|
private data class Nested(val v: Int, val v2: Int)
|
|
|
|
fun foo(p: Int): Inner {
|
|
return Outer.Nested(p, <caret>)
|
|
}
|
|
}
|
|
|
|
// ELEMENT: p
|