syntax: while condition can now cast variable
[nit.git] / tests / base_isa_cast2.nit
index 14de354..ca13a66 100644 (file)
@@ -47,7 +47,7 @@ end
 a.foo(4)
 a = a0
 while a isa B do
-       #alt8#a.foo(5)
+       a.foo(5)
        a = new A
        #alt5#a.foo(-5)
 end