inline field: preserve context for diamonds (IDEA-158604)

This commit is contained in:
Anna.Kozlova
2016-07-18 20:41:24 +02:00
parent 6e99f31873
commit cfe8570309
4 changed files with 33 additions and 4 deletions
@@ -0,0 +1,9 @@
import java.util.HashMap;
import java.util.Map;
final class Foo {
private Map<String, Object> getMap() {
return new HashMap<>();
}
}