blob: 01afbc7bc72a3b14f7d446a71d74cb3da91f710b [file] [log] [blame]
package p;
class Test {
static class C {
static void foo() {
Object o= C.class;
}
}
void f() {
C.foo();
}
}