blob: 8303c6d70af73a2d3ee5513c41bee448df0e9b88 [file] [log] [blame]
// "Insert '(IOException)o' declaration" "true"
import java.io.IOException;
class C {
void f(Object o) {
if (o instanceof IOException) {
<caret>
}
}
}