IDEA-76808 Smart completion doesn't suggest any variants inside arithmetic or boolean expressions containing three or more operands

This commit is contained in:
peter
2011-11-11 17:33:12 +01:00
parent 0fb0d7c72e
commit f8c09838b3
4 changed files with 20 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
class A {
int m() {
return 0 + 1 + hashCode()<caret>;
}
}

View File

@@ -0,0 +1,5 @@
class A {
int m() {
return 0 + 1 + ha<caret>;
}
}