BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git] / tests / testcases / ducky / method-dispatch-10.boo
blob0d760286eb15c9551ad1cb0e6577bd9b88860aec
1 """
2 42
3 """
4 class Foo:
5 static def bar():
6 return 42
9 f as duck = Foo()
10 print f.bar()