BOO-999
[boo.git] / tests / testcases / errors / BCE0115-1.boo
blob20c91a2b940dfd289033ee65bc8b48b4ab582dee
1 """
2 BCE0115-1.boo(11,5): BCE0115: Cannot implement interface item 'ISpaceWaster.Property' when not implementing the interface 'ISpaceWaster'
3 """
5 interface ISpaceWaster:
6 Property as bool:
7 get:
8 pass
10 class SpaceSub:
11 ISpaceWaster.Property as bool:
12 get:
13 return false