X-Git-Url: http://nitlanguage.org diff --git a/tests/base_init_super_call2.nit b/tests/base_init_super_call2.nit index 1211acf..be64735 100644 --- a/tests/base_init_super_call2.nit +++ b/tests/base_init_super_call2.nit @@ -89,6 +89,7 @@ end class C3 super A init(j: Int) do + super(j)#alt6# j.output end end @@ -96,6 +97,7 @@ end class D3 super A init(j: Int) do + super(j)#alt6# j.output end end @@ -119,6 +121,7 @@ end class F2 super A init(j: Int, k: Bool) do + super(j)#alt6# j.output end end