mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
11 lines
206 B
Java
11 lines
206 B
Java
// "Cast 1st argument to 'Throwable'" "true-preview"
|
|
class a {
|
|
void f(Throwable a, Throwable b) {}
|
|
void g() {
|
|
Exception e=null;
|
|
Object o = null;
|
|
f((Throwable) e,o);
|
|
}
|
|
}
|
|
|