blob: c5c9300fd6b437196e6946491a15b14e46d357ab [file] [log] [blame]
class Foo {
public static final String CONST = 'b'
def foo() {
print 'a' + CONST<caret> + 'c'
}
}