X-Git-Url: http://nitlanguage.org diff --git a/tests/error_prop_loc.nit b/tests/error_prop_loc.nit index e0407ad..b74fc3c 100644 --- a/tests/error_prop_loc.nit +++ b/tests/error_prop_loc.nit @@ -19,17 +19,17 @@ class Object end class A - meth toto do end + fun toto do end end class B -special A - redef meth toto do end + super A + redef fun toto do end end class C -special A - redef meth toto do end + super A + redef fun toto do end end class D -special B -special C + super B + super C end