update NOTICE and LICENSE
[nit.git] / tests / base_closure4.nit
index 4d13fe8..489b1e8 100644 (file)
@@ -18,7 +18,7 @@ import kernel
 
 class A
        fun foo
-               with bar: Int
+               !bar: Int
        do
                1.output
                bar.output #!alt1#
@@ -28,18 +28,22 @@ class A
        end
 end
 
+fun maybe: Bool do return true
+
 fun work
 do
        var a = new A
-       a.foo with do #!alt11#
-       #alt11#a.foo with x do
+       a.foo !bar do #!alt11#
+       #alt11#a.foo !bar x do
                2.output
+               if maybe then
                #alt4#break
                #alt5#break 'x'
                #alt6#continue
                #alt7#continue 'x'
                #alt8#return
                #alt9#return 'x'
+               end
                continue 3
        end
        #alt10# a.foo