BOO-999
[boo.git] / tests / testcases / errors / BCE0024-2.boo
blob77098922242ded535cf3c1c797ac02a82908f5d7
1 """
2 BCE0024-2.boo(9,9): BCE0024: The type 'Foo' does not have a visible constructor that matches the argument list '()'.
3 """
4 class Foo:
5 def constructor(item):
6 pass
8 class Bar(Foo):
9 def constructor():
10 pass