blob: 461f331ef2ed9a84054ac6aeb61a5f81d0ff1ad0 [file] [log] [blame]
public class X {
public static void run(String args[]) {
Runnable a = new Runnable() {
public void run() {
// The following line is a problem
}
};
int b = 42;
}
}