mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
new inference: don't start inference if new expression contains type args (IDEA-148621)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class Foo {
|
||||
public static void main(final String[] args) {
|
||||
new Bar<RuntimeException>();
|
||||
}
|
||||
|
||||
public static class Bar<E extends Throwable> {
|
||||
public Bar() throws E {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user