Files
kotlin-fork/idea/testData/completion/handlers/smart/NestedDataClass.kt
T
2014-10-22 15:48:00 +04:00

10 lines
132 B
Kotlin

class Outer {
private data class Nested(val v: Int)
fun foo(): Nested {
return <caret>
}
}
// ELEMENT: Nested