IDEA-95064 Unexpected code completion

This commit is contained in:
peter
2012-11-15 23:54:55 +01:00
parent 2a8937a7f3
commit 6b04b1741f
2 changed files with 12 additions and 4 deletions
@@ -2,6 +2,6 @@ class List<T> {}
class C {
void foo () {
List<? extends String>[] array = new List[]{<caret>};
List<? extends String>[] array = new List[<caret>];
}
}