blob: 863622a54070cf76847e684b22ac04f8db8bdec4 [file] [log] [blame]
class Foo {
def next() {return this}
def previous() {return this}
}
class X {
def foo() {
final ObjectRange range = new Foo().<caret>.new Foo()
}
}