X-Git-Url: http://nitlanguage.org diff --git a/tests/base_init_inherit5.nit b/tests/base_init_inherit5.nit index e833b51..82f83b2 100644 --- a/tests/base_init_inherit5.nit +++ b/tests/base_init_inherit5.nit @@ -7,7 +7,7 @@ class A a.output end - meth foo + fun foo do 'a'.output '\n'.output @@ -25,7 +25,7 @@ special A '}'.output end - redef meth foo + redef fun foo do 'b'.output super @@ -43,7 +43,7 @@ special B '}'.output end - redef meth foo + redef fun foo do 'c'.output super @@ -52,7 +52,7 @@ end class M special A - redef meth foo + redef fun foo do 'm'.output super @@ -62,7 +62,7 @@ end class N special B special M - redef meth foo + redef fun foo do 'n'.output super @@ -80,7 +80,7 @@ special C cc(a,b,c) '}'.output end - redef meth foo + redef fun foo do 'o'.output super