completion for inherited after new: find corresponding type parameter when target type passes to another parameter (IDEA-157803)

This commit is contained in:
Anna.Kozlova
2017-03-17 09:39:29 +01:00
parent 80bdf5dfa2
commit cd431e9763
3 changed files with 19 additions and 1 deletions
@@ -0,0 +1,7 @@
class M<K, V> {}
class HM<K, V> extends M<K, V> {}
class Foo {
{
M<String, Object> m = new <caret>
}
}