fix completion context to collapse to diamonds (IDEA-169491)

This commit is contained in:
Anna.Kozlova
2017-03-13 17:18:18 +01:00
parent 03011ff292
commit 4e3b104169
4 changed files with 21 additions and 1 deletions
@@ -0,0 +1,8 @@
import java.util.ArrayList;
class Test {
<T> ArrayList<T> foo () {
return new ArrayList<>();
}
}
@@ -0,0 +1,8 @@
import java.util.ArrayList;
class Test {
<T> ArrayList<T> foo () {
return new Arr<caret>
}
}