Correct resolution of inherited default members on external interfaces
[boo.git] / tests / testcases / errors / BCE0127-1.boo
blobd9bdcd27aff2f4dcda1fb939ba447e4706f82390
1 """
2 BCE0127-1.boo(9,6): BCE0127: A ref or out argument must be an lvalue: '10'
3 BCE0127-1.boo(9,5): BCE0017: The best overload for the method 'BCE0127-1Module.doit(int)' is not compatible with the argument list '(int)'.
4 """
6 def doit(ref y as int):
7 y = 4
9 doit(10)