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