Files
kotlin-fork/idea/testData/completion/smart/InNestedClass.kt
T
Valentin Kipyatkov 311a3a75c8 Code completion: do not list instance members from context with no instance
#KT-6388 Fixed
 #KT-4422 Fixed
 #KT-5516 Fixed
2014-12-22 18:26:03 +03:00

10 lines
128 B
Kotlin

class Outer {
class Nested {
fun foo(): Outer {
return <caret>
}
}
}
// ABSENT: this@Outer