Fixed KT-6673 Completion: no properties from outside class inside anonymous object

#KT-6673 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-03-03 14:54:28 +03:00
parent 5e66727ff6
commit c5d21e1f45
4 changed files with 32 additions and 5 deletions
@@ -0,0 +1,14 @@
class A(private val xxx1: Int, val xxx2: Int) {
private val xxx3: Int = 0
private val x = object : Runnable {
override fun run() {
<caret>
}
}
}
// EXIST: xxx1
// EXIST: xxx2
// EXIST: xxx3
// EXIST: x