X-Git-Url: http://nitlanguage.org diff --git a/tests/base_attr_nullable_int.nit b/tests/base_attr_nullable_int.nit index 62e3679..8e10a92 100644 --- a/tests/base_attr_nullable_int.nit +++ b/tests/base_attr_nullable_int.nit @@ -19,21 +19,21 @@ import end interface Object end -universal Int - meth output is intern - meth +(o: Int): Int is intern +enum Int + fun output is intern + fun +(o: Int): Int is intern end class Foo - attr _a1: Int - readable attr _a2: Int - meth run + var _a1: Int + readable var _a2: Int + fun run do _a1.output a2.output end - meth run_other(o: Foo) + fun run_other(o: Foo) do o._a1.output o._a2.output @@ -51,9 +51,9 @@ class Foo end class Bar -special Foo - attr _a3: Int - redef meth run + super Foo + var _a3: Int + redef fun run do _a1.output _a2.output