blob: e0ed5919f70a0e99e8635e4c3f006923360866dc [file] [log] [blame]
package p;
//use Object
class A{
public void foo(){};
}
class Test{
void test() throws InterruptedException{
A a= new A();
a.getClass();
a.equals(null);
a.hashCode();
a.notify();
a.notifyAll();
a.toString();
a.wait();
a.wait(0);
a.wait(0, 0);
}
}