blob: a89df769a658116193b2ea0a34d68b7c102acdd5 [file] [log] [blame]
package objects_require_non_null;
class Two {
private Object o;
Two(Object o) {
if (o == null) {
throw new NullPointerException();
}
this.o = <caret>o;
}
}