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