Correct resolution of inherited default members on external interfaces
[boo.git] / tests / testcases / errors / BCE0116-1.boo
blob407afc6e12312762217013e7f83ae0e665619e72
1 """
2 BCE0116-1.boo(11,12): BCE0116: Explicit member implementation for 'ISpaceWaster.Property' must not declare any modifiers.
3 """
5 interface ISpaceWaster:
6 Property as bool:
7 get:
8 pass
10 class SpaceSub(ISpaceWaster):
11 public ISpaceWaster.Property as bool:
12 get:
13 return false