update NOTICE and LICENSE
[nit.git] / tests / base_closure_default4.nit
index 494cebb..cd4f409 100644 (file)
 import kernel
 
 class A
-       meth foo
-               with bar(i: Int): Int do
+       fun foo
+               !bar(i: Int): Int do
+                       if maybe then
                        #alt1# return
                        #alt2# return -1
                        #alt3# abort
                        #alt4# continue
+                       #alt6# break
+                       #alt7# break 1
+                       end
                        continue (i * 10) #!alt5#
                end
        do
@@ -32,9 +36,11 @@ class A
        end
 end
 
+fun maybe: Bool do return true
+
 var a = new A
 0.output
-a.foo with j do continue j
+a.foo !bar j do continue j
 0.output
 a.foo
 0.output