expand diamonds on introduce parameter (IDEA-74059)

This commit is contained in:
anna
2011-09-08 19:27:54 +02:00
parent e9baca15d1
commit e2ae76304d
3 changed files with 13 additions and 1 deletions
@@ -6,4 +6,8 @@ class Test {
List<String> lss = anObject;
List<Integer> li = new ArrayList<>();
}
void bar() {
foo(new ArrayList<String>());
}
}
@@ -6,4 +6,8 @@ class Test {
List<String> lss = new ArrayList<>();
List<Integer> li = new ArrayList<>();
}
void bar() {
foo();
}
}