blob: 20b05e34f6075c8d748690061e55a90a9d5c82cc [file] [log] [blame]
package p;
import static java.lang.Math.cos;
public class A {
class Inner {
static class InnerInner {
static class InnerInnerInner {}
}
public void doit() {
foo();
fred++;
double d= cos(0);
new Stat();
}
}
static void foo(){};
static int fred;
static class Stat{}
}