summaryrefslogtreecommitdiff
path: root/tests/parameter-test.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2021-12-03 19:03:08 -0500
committerKyle Gunger <kgunger12@gmail.com>2021-12-03 19:03:08 -0500
commite7091ba29c28352cfb33906092e212723db399b1 (patch)
tree1c942808e861f3de2e40bef4b687a44dbd62d8e1 /tests/parameter-test.tnsl
parent1100ac865074effb3a4735c7449779f7193b7d0c (diff)
[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
Diffstat (limited to 'tests/parameter-test.tnsl')
-rw-r--r--tests/parameter-test.tnsl4
1 files changed, 3 insertions, 1 deletions
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]
+
;/