diff options
author | Gavin Howard <yzena.tech@gmail.com> | 2019-02-18 19:52:27 -0700 |
---|---|---|
committer | Gavin Howard <yzena.tech@gmail.com> | 2019-02-18 19:52:27 -0700 |
commit | d1c75d6b9533855cee8d724c03b648f9e3fee119 (patch) | |
tree | 3db0a6c6ec63407c12a002d82971042bd69b9431 /tests | |
parent | 0767fd7f936b8e126357a679a7233ac9544d8757 (diff) | |
download | platform_external_bc-d1c75d6b9533855cee8d724c03b648f9e3fee119.tar.gz platform_external_bc-d1c75d6b9533855cee8d724c03b648f9e3fee119.tar.bz2 platform_external_bc-d1c75d6b9533855cee8d724c03b648f9e3fee119.zip |
Fix an error test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bc/errors.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |