X-Git-Url: http://nitlanguage.org diff --git a/tests/base_attr_isset.nit b/tests/base_attr_isset.nit index 9df6bab..5120c9b 100644 --- a/tests/base_attr_isset.nit +++ b/tests/base_attr_isset.nit @@ -55,7 +55,7 @@ class Foo show(1) _a1 = new Integer(1) show(2) - _a2 = new Integer(_a1.val + 1) #!alt3# #!alt4# + _a2 = new Integer(_a1.val + 1) #alt3# #alt4# show(3) end #alt3# @@ -63,8 +63,8 @@ class Foo end class Bar -special Foo - var _a3: Integer#!alt1# #!alt2# + super Foo + var _a3: Integer#alt1# #alt2# #alt1#var _a3: Integer = new Integer(9000) #alt2#var _a3: nullable Integer redef fun run @@ -94,7 +94,7 @@ special Foo end class Baz -special Foo + super Foo end #alt4# var b2 = new Baz