Files

8 lines
118 B
Java

class Test {
void foo() {
Object c = getObject();
c.notify();
}
Object getObject() {return null;}
}