blob: e34dcc294ca53477de837ef8288b1c8489826d83 [file] [log] [blame]
// "Create Method 'someMethod'" "true"
public class Test {
public Object get() {
return new Object() {
public boolean equals(Object obj) {
return someMethod(this);
}
private boolean someMethod(Object o) {
<caret><selection>return false;</selection>
}
};
}
}