blob: 89a13efc2eb78b2532303d6a44b42bfa6bf388c2 [file] [log] [blame]
class Bar {
static int x = 5
final f = x + 2
def foo() {
print f<caret>
}
static def bar() {
print x + 2
}
}