This commit is contained in:
Maxim Medvedev
2010-07-17 12:20:54 +04:00
parent e04b80bc7c
commit 1babec6d2d
@@ -0,0 +1,12 @@
class X {
def foo = 2
def a() {
def foo = 3;
foo = 5
print foo
print this.foo
}
}