KT-6923 Completion shouldn't show private symbols from compiled code

#KT-6923 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-04-01 12:25:36 +03:00
parent 3b110f8ef8
commit 36fb14a3fc
4 changed files with 31 additions and 3 deletions
@@ -0,0 +1,13 @@
import java.io.File
class MyFile : File("file") {
private val privateField = 0
}
fun foo(f: MyFile) {
f.<caret>
}
// INVOCATION_COUNT: 2
// EXIST: privateField
// ABSENT: prefixLength