mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
13 lines
232 B
Java
13 lines
232 B
Java
// "Insert '(IOException)o' declaration" "true-preview"
|
|
import java.io.IOException;
|
|
|
|
class C {
|
|
void f(Object o) {
|
|
if (o instanceof IOException) {
|
|
IOException ioException = (IOException) o;
|
|
<caret>
|
|
}
|
|
}
|
|
}
|
|
|