blob: 3bfbe4c4480223b1a3d7972490bd6be77066dfa4 [file] [log] [blame]
// "Delete catch for 'java.io.FileNotFoundException'" "true"
import java.io.*;
class C {
void m() {
try {
int p = 0;
}
catch (EOFException | <caret>FileNotFoundException | RuntimeException e) {
}
}
}