mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
IDEA-98421 (parse super call type arguments)
This commit is contained in:
+11
@@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user