blob: a35136215e4aca878b6bd8df5cbb24121962e4be [file] [log] [blame]
class Foo {
def bar = 3
def f = 4 - bar
def foo() {
print "a"
print f
f++
f -=4
print f
}
}