blob: 08f32b36459531e054ebca429002945f82ed86fb [file] [log] [blame]
package test0240;
import java.util.*;
public class Test {
public int foo() {
class X {
int foo() {
return Test.this.f;
}
}
return new X().foo();
}
public int f = 0;
}