KT-8664 Hide componentX() functions for data classes from completion

#KT-8664 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-09-27 22:04:03 +03:00
parent 7263d0a056
commit 2f5e820afb
7 changed files with 81 additions and 4 deletions
@@ -0,0 +1,9 @@
data class X {
operator fun component1(): Int = 0
}
fun foo(x: X) {
x.<caret>
}
// EXIST: component1