online_ide: update to the new API of the loader
[nit.git] / tests / base_primitive_null.nit
index 4ab32bd..130d8fd 100644 (file)
@@ -17,9 +17,9 @@
 import kernel
 
 class A
-       var _i: nullable Int = null
-       var _b: nullable Bool = null
-       var _c: nullable Char = null
+       var i: nullable Int = null
+       var b: nullable Bool = null
+       var c: nullable Char = null
 
        init
        do
@@ -49,7 +49,7 @@ class A
                o = _c
                (o == null).output
                (not o == '\0').output
-               #alt3#_c.ascii.output
+               #alt3#_c.code_point.output
        end
 end