blob: fe63dff6b0a71cab00f474ca4c4f4192ff531fed [file] [log] [blame]
package p;
//use Object
class A{
public void foo(){};
}
class Test{
void test() throws CloneNotSupportedException, InterruptedException{
Object 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);
}
}