IDEA-98421 (parse super call type arguments)

This commit is contained in:
Roman Shevchenko
2013-01-02 21:19:14 +01:00
parent d8ef7d17d8
commit b4eebdd684
6 changed files with 60 additions and 8 deletions
@@ -0,0 +1,11 @@
class Outer {
class Inner {
public <T> Inner(T t) { }
}
class Other extends Outer.Inner {
public Other() {
new Outer().<Object>super("Hi");
}
}
}