blob: 5da5f59f8e3605fbc35288d978d23fb28b118f77 [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;
}
}