X-Git-Url: http://nitlanguage.org diff --git a/tests/error_prop_loc.nit b/tests/error_prop_loc.nit index 3aceac3..b74fc3c 100644 --- a/tests/error_prop_loc.nit +++ b/tests/error_prop_loc.nit @@ -22,14 +22,14 @@ class A fun toto do end end class B -special A + super A redef fun toto do end end class C -special A + super A redef fun toto do end end class D -special B -special C + super B + super C end