blob: 5dc33a1d2e5410047e861caeaceab3502e6b81ba [file] [log] [blame]
public class X {
private String s;
public X(String s) {
if (s == null) throw new NullPointerException();
this.s = <spot>s</spot>;
}
}