blob: f96cba4a19581c1e91df894077bf5af5d20abda8 [file] [log] [blame]
// "Insert '(IOException)o' declaration" "true"
import java.io.IOException;
class C {
void f(Object o) {
if (o instanceof IOException) {
IOException ioException = (IOException) o;
}
}
}