blob: 8ef3ccd6e548ec6ed55f8dba1368e06da763bc17 [file] [log] [blame]
import java.io.*;
class Foo {
{
Runnable runnable = new Runnable() {
public void run() {
try {
throw new IOException();
} catch (<caret>) {
}
}
};
}
}