mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
14 lines
209 B
Java
14 lines
209 B
Java
// "Insert '(IOException)o' declaration" "true"
|
|
import java.io.IOException;
|
|
|
|
class C {
|
|
void f(Object o) {
|
|
if (o instanceof IOException) {
|
|
IOException o1 = (IOException) o;
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
|