blob: f3b58860b11e41872dc7a1e69062bd96557f3f9c [file] [log] [blame]
class X {
def foo = 2
def a() {
def foo = 3;
foo = 5
print foo
print this.foo
}
}