From: Jean Privat Date: Fri, 5 Jun 2015 19:55:45 +0000 (-0400) Subject: tests: add test_keep_going.nit X-Git-Tag: v0.7.6~61^2 X-Git-Url: http://nitlanguage.org tests: add test_keep_going.nit Signed-off-by: Jean Privat --- diff --git a/tests/sav/test_keep_going.res b/tests/sav/test_keep_going.res new file mode 100644 index 0000000..346b309 --- /dev/null +++ b/tests/sav/test_keep_going.res @@ -0,0 +1 @@ +test_keep_going.nit:15,11--14: Error: class `Fail` not found in module `test_keep_going`. diff --git a/tests/test_keep_going.nit b/tests/test_keep_going.nit new file mode 100755 index 0000000..b3bedaa --- /dev/null +++ b/tests/test_keep_going.nit @@ -0,0 +1,47 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +fun plop: Fail +do + print 1 +end + +1.output +if false then + plop +end +2.output +if false then + fail +end +3.output +if false then + var x = new Fail + x.output +end +4.output +if false then + if 1 then abort +end +5.output +if false then + abort + 999.output +end +6.output +if false then + var a = new Sys.fail + a.output +end +7.output