From d1c75d6b9533855cee8d724c03b648f9e3fee119 Mon Sep 17 00:00:00 2001 From: Gavin Howard Date: Mon, 18 Feb 2019 19:52:27 -0700 Subject: Fix an error test --- tests/bc/errors.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/bc/errors.txt b/tests/bc/errors.txt index a730382e..0c595eb2 100644 --- a/tests/bc/errors.txt +++ b/tests/bc/errors.txt @@ -183,7 +183,7 @@ print; print 1,2 print 45 print "s" "4" } -for (i=0; i; ++i) if (i) print "stuff"; else i; if (!i) i + 1; else i; +for (i=0; i; ++i) if (i) print "stuff"; else i; if (!i) i + 1; else i; } if (i == 0) break; else i; while (x != 0) { break 4; } while (x != 0) { continue 4; } -- cgit v1.2.3