From e7091ba29c28352cfb33906092e212723db399b1 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Fri, 3 Dec 2021 19:03:08 -0500 Subject: [PARSE] Fix hex parsing ~ Apparently CF does work, it was probably just something on my end + Fix parsing of numeric literals with bases other than 10 --- tests/parameter-test.tnsl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/parameter-test.tnsl') diff --git a/tests/parameter-test.tnsl b/tests/parameter-test.tnsl index cae89ab..6db35b1 100644 --- a/tests/parameter-test.tnsl +++ b/tests/parameter-test.tnsl @@ -14,5 +14,7 @@ limitations under the License. #/ ;int another = 0 -/; loop (int initial = 0, complex = 2) [initial < max || complex < 40; initial++; complex += 7; another += 2] + +/; loop (int initial = 0, complex = 2) [initial < max || complex < 40; initial++; complex = complex + 7; another = another + 2] + ;/ -- cgit v1.2.3