update NOTICE and LICENSE
[nit.git] / tests / base_closure1.nit
index 27d0f88..fc33d3a 100644 (file)
@@ -18,7 +18,7 @@ import kernel
 
 class A
        fun foo
-               with bar
+               !bar
        do
                1.output
                bar #!alt1#
@@ -28,21 +28,26 @@ 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
                3.output
        end
        #alt10# a.foo
+       #alt12# a.foo !baz do (-1).output
        5.output
 end