blob: 544b2db93e103f58486d619ad5e5eb447d5927f6 [file] [log] [blame]
// "Remove 'java.io.IOException' from 'f' throws list" "false"
import java.io.*;
class a {
private void f() throws <caret>IOException {
throw new IOException();
}
}