Checked that KT-5984 has been fixed already

This commit is contained in:
Valentin Kipyatkov
2014-10-20 18:58:24 +04:00
parent af883d9165
commit f64f08c9b6
2 changed files with 18 additions and 0 deletions
@@ -0,0 +1,9 @@
class Outer {
private data class Nested(val v: Int)
fun foo(): Nested {
return <caret>
}
}
// ELEMENT: Nested
@@ -0,0 +1,9 @@
class Outer {
private data class Nested(val v: Int)
fun foo(): Nested {
return Nested(<caret>)
}
}
// ELEMENT: Nested