blob: abe77012de5700cce0c61422a68bfaaddc561b71 [file] [log] [blame]
class Foo implements Comparable<Foo> {
def next() {return this}
def previous() {return this}
@Override
int compareTo(Foo o) {
<selection>return 0</selection>
}
}
class X {
def foo() {
final ObjectRange range = new Foo()..new Foo()
}
}