BOO-999
[boo.git] / tests / testcases / errors / BCE0020-1.boo
blob5d9c6f75a42004548595357548eb244edd1216a3
1 """
2 BCE0020-1.boo(10,15): BCE0020: An instance of type 'Foo' is required to access non static member 'bar'.
3 BCE0020-1.boo(15,5): BCE0020: An instance of type 'Foo' is required to access non static member 'baz'.
4 """
5 class Foo:
7 bar = 0
9 static def go():
10 print bar
12 def baz():
13 print bar
15 Foo.baz()