IDEA-108068 Idea suggests two identical completions for an array constructor

This commit is contained in:
peter
2013-05-29 19:43:36 +02:00
parent 7053313c86
commit f60d51bff6
3 changed files with 19 additions and 0 deletions
@@ -0,0 +1,10 @@
public class Bug17 {
private void f(byte[] d) {
}
private void g() {
f(new <caret>);
}
}