mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
11 lines
217 B
Java
11 lines
217 B
Java
// "Cast 2nd parameter to 'java.lang.Throwable'" "true"
|
|
class a {
|
|
void f(Throwable a, Throwable b) {}
|
|
void g() {
|
|
Exception e=null;
|
|
Object o = null;
|
|
f(<caret>e, (Throwable) o);
|
|
}
|
|
}
|
|
|