X-Git-Url: http://nitlanguage.org diff --git a/tests/base_closure_default1.nit b/tests/base_closure_default1.nit index 0210965..ffe3698 100644 --- a/tests/base_closure_default1.nit +++ b/tests/base_closure_default1.nit @@ -17,13 +17,17 @@ import kernel class A - meth foo - with bar do + fun foo + !bar do + if maybe then #alt1# return #alt2# return 1 #alt3# abort #alt4# continue #alt5# continue 20 + #alt6# break + #alt7# break 1 + end 20.output end do @@ -33,9 +37,11 @@ class A end end +fun maybe: Bool do return true + var a = new A 0.output -a.foo with do 2.output +a.foo !bar do 2.output 0.output a.foo 0.output