Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / base_attr_nullable.nit
index 3e2c6f0..112f86b 100644 (file)
@@ -18,25 +18,24 @@ import end
 
 interface Object
 end
-
+enum Bool end
 enum Int
        fun output is intern
        fun +(o: Int): Int is intern
 end
 
 class Integer
-       readable writable var _val: Int
-       init(val: Int) do _val = val
+       var val: Int
        fun output do _val.output
 end
 
 class Foo
-       var _a1: Integer
-       readable var _a2: Integer
+       var a1: Integer is noinit
+       var a2: Integer is noinit
        fun run
        do
                _a1.output
-               a2.output
+               _a2.output
        end
 
        fun run_other(o: Foo)
@@ -50,7 +49,7 @@ class Foo
                #alt1#run
                _a1 = new Integer(1)
                #alt2#run
-               _a2 = new Integer(_a1.val + 1)
+               _a2 = new Integer(_a1._val + 1)
        end
 
        init nop do end
@@ -58,7 +57,7 @@ end
 
 class Bar
        super Foo
-       var _a3: Integer
+       var a3: Integer is noinit
        redef fun run
        do
                _a1.output
@@ -68,7 +67,7 @@ class Bar
 
        init
        do
-               nop
+               if false then super # no auto super init call
                #alt3#run
                _a1 = new Integer(10)
                #alt4#run_other(self)