blob: c1d4122707152425f486d580b783d58672d2a276 [file] [log] [blame]
import java.io.*;
class Foo {
{
try {
foo();
} catch (<caret>)
}
private void foo() throws FileNotFoundException {
}
private void bar() throws ArrayIndexOutOfBoundsException {
}
}