mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
13 lines
285 B
Java
13 lines
285 B
Java
interface I<T extends Exception> {
|
|
void m() throws T;
|
|
}
|
|
|
|
class C {
|
|
void x(I<?> i) {
|
|
<error descr="Unhandled exception: java.lang.Exception">i.m();</error>
|
|
}
|
|
|
|
void y(I<? extends Exception> i) {
|
|
<error descr="Unhandled exception: java.lang.Exception">i.m();</error>
|
|
}
|
|
} |