Correct resolution of inherited default members on external interfaces
[boo.git] / tests / testcases / errors / BCE0088-1.boo
blobbaa22388eb1ad63b8c9b1a9d60eb6d7f94e699be
1 """
2 BCE0088-1.boo(11,5): BCE0088: Sorry but the '___' prefix is reserved by the compiler. Friends?
3 BCE0088-1.boo(13,9): BCE0088: Sorry but the 'get_' prefix is reserved by the compiler. Friends?
4 BCE0088-1.boo(16,9): BCE0088: Sorry but the 'set_' prefix is reserved by the compiler. Friends?
5 BCE0088-1.boo(19,9): BCE0088: Sorry but the 'add_' prefix is reserved by the compiler. Friends?
6 BCE0088-1.boo(22,9): BCE0088: Sorry but the 'remove_' prefix is reserved by the compiler. Friends?
7 BCE0088-1.boo(25,9): BCE0088: Sorry but the 'raise_' prefix is reserved by the compiler. Friends?
8 """
9 class Invalid:
11 ___invalid
13 def get_foo():
14 pass
16 def set_foo():
17 pass
19 def add_foo():
20 pass
22 def remove_foo():
23 pass
25 def raise_foo():
26 pass