X-Git-Url: http://nitlanguage.org diff --git a/tests/base_primitive_null.nit b/tests/base_primitive_null.nit index 6961e6d..130d8fd 100644 --- a/tests/base_primitive_null.nit +++ b/tests/base_primitive_null.nit @@ -17,13 +17,13 @@ import kernel class A - var _i: Int - var _b: Bool - var _c: Char + var i: nullable Int = null + var b: nullable Bool = null + var c: nullable Char = null init do - var o: Object + var o: nullable Object 'I'.output '\n'.output (_i == null).output @@ -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