blob: edb9a94916c724844f3cd72cb7e550a68ddf7f6f [file] [log] [blame]
public class Test {
void m() {
Object x = null;
System.out.println("x = " + newMethod(x)); // [...] = selection
}
private Object newMethod(Object x) {
return x;
}
}