mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
check overridden methods with different type params numbers for thrown exceptions (IDEA-67860)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
interface A {
|
||||
<T extends Exception> void foo() throws T;
|
||||
<T extends Exception> void bar() throws Exception;
|
||||
void baz() throws Exception;
|
||||
}
|
||||
|
||||
interface B<T extends Throwable> extends A {
|
||||
void foo() throws <error descr="'foo()' in 'B' clashes with 'foo()' in 'A'; overridden method does not throw 'T'">T</error>;
|
||||
void bar() throws <error descr="'bar()' in 'B' clashes with 'bar()' in 'A'; overridden method does not throw 'java.lang.Throwable'">Throwable</error>;
|
||||
void baz() throws <error descr="'baz()' in 'B' clashes with 'baz()' in 'A'; overridden method does not throw 'java.lang.Throwable'">Throwable</error>;
|
||||
}
|
||||
Reference in New Issue
Block a user