blob: e041b7c05cd6c0975bce1cad3c46d84ebccbef7c [file] [log] [blame]
class A {
public static final String CONST = "a"
def foo() {
print CONST<caret>
}
def bar() {
def CONST = 2
print A.CONST
}
}