Correct resolution of inherited default members on external interfaces
[boo.git] / tests / testcases / errors / BCE0150-1.boo
blob765d6e4ca8bfeada752ce4481491c31c2305b2c4
1 """
2 BCE0150-1.boo(5,7): BCE0150: 'Test' is marked 'abstract final' and cannot contain instance member 'Blah'; all members must be marked static.
3 """
4 abstract final class Test:
5 def Blah():
6 print "Blah"
7 static def Foo():
8 print "Foo"
10 Test.Foo()