update NOTICE and LICENSE
[nit.git] / tests / base_closure3.nit
index bd731a7..3910bae 100644 (file)
@@ -18,7 +18,7 @@ import kernel
 
 class A
        fun foo(i, j: Int)
-               with bar(k, l: Int, a: A)
+               !bar(k, l: Int, a: A)
        do
                i.output
                bar(i+1, j-1, self)
@@ -27,19 +27,23 @@ class A
        end
 end
 
+fun maybe: Bool do return true
+
 var a = new A
 0.output
-a.foo(1,8) with x, y, b do #!alt2#
-#alt2#a.foo(1,8) with x, y do
+a.foo(1,8) !bar x, y, b do #!alt2#
+#alt2#a.foo(1,8) !bar x, y do
        x.output
-       b.foo(x+1, y-1) with z, t, c do
+       b.foo(x+1, y-1) !bar z, t, c do
                z.output
+               if maybe then
                #alt4#break
                #alt5#break 'x'
                #alt6#continue
                #alt7#continue 'x'
                #alt8#return
                #alt9#return 'x'
+               end
                t.output
        end
        y.output