nitc: fix calling extern constructors from extern code in separate compiler
[nit.git] / tests / base_attr_def.nit
index 1b7474d..4b1d21e 100644 (file)
@@ -24,15 +24,16 @@ class Int
 end
 
 class Foo
-       readable writable var _a1: Int 
-       readable writable var _a2: Int
+       var a1: Int
+       var a2: Int
        fun run
        do
                a1.output
                a2.output
        end
 
-       init
+       init is
+               old_style_init
        do
                a1 = 1
                a2 = 2
@@ -41,7 +42,7 @@ end
 
 class Bar
        super Foo
-       readable writable var _a3: Int 
+       var a3: Int
        redef fun run
        do
                a1.output
@@ -49,7 +50,8 @@ class Bar
                a3.output
        end
 
-       init 
+       init is
+               old_style_init
        do 
                a1 = 10
                a2 = 20