Correct resolution of inherited default members on external interfaces
[boo.git] / tests / testcases / errors / BCE0153-1.boo
blob56ee05a35cdb56bbb6766e229dc6c3a1542285ba
1 """
2 BCE0153-1.boo(4,17): BCE0153: 'final' can not be applied to interface definitions.
3 """
4 final interface IFoo:
5 def Test()
7 class Bar(IFoo):
8 def Test():
9 print "Test"
11 Bar().Test()