X-Git-Url: http://nitlanguage.org diff --git a/tests/base_attr.nit b/tests/base_attr.nit index 5c81c2b..4fef2d7 100644 --- a/tests/base_attr.nit +++ b/tests/base_attr.nit @@ -16,7 +16,7 @@ import end -class Object +interface Object end class Int @@ -24,8 +24,8 @@ class Int end class Foo - var _a1: Int - var _a2: Int + var a1: Int is noinit + var a2: Int is noinit fun run do _a1.output @@ -41,7 +41,7 @@ end class Bar super Foo - var _a3: Int + var a3: Int is noinit redef fun run do _a1.output