Merge: Neo4j: bug fixes and improvments
[nit.git] / tests / base_attr_nullable_int.nit
index e1de585..3276d2c 100644 (file)
@@ -25,12 +25,12 @@ enum Int
 end
 
 class Foo
-       var _a1: Int
-       readable var _a2: Int
+       var a1: Int
+       var a2: Int
        fun run
        do
                _a1.output
-               a2.output
+               _a2.output
        end
 
        fun run_other(o: Foo)
@@ -51,8 +51,8 @@ class Foo
 end
 
 class Bar
-special Foo
-       var _a3: Int
+       super Foo
+       var a3: Int
        redef fun run
        do
                _a1.output