blob: 78f81e00b04920000edfc9260bb4c25c78a1c4ce [file] [log] [blame]
package p;
class A{
static int x(){return 42;};
}
class X{
static class B{
static int x(){return 42;};
}
int m(Object o){
return A.x();
}
}