tests: remove remaining old-style accessors
[nit.git] / tests / base_attr_nullable_int.nit
index 8e10a92..063dd14 100644 (file)
@@ -26,11 +26,11 @@ end
 
 class Foo
        var _a1: Int
-       readable var _a2: Int
+       var _a2: Int
        fun run
        do
                _a1.output
-               a2.output
+               _a2.output
        end
 
        fun run_other(o: Foo)