aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2024-06-16 11:20:28 +0200
committerBad Diode <bd@badd10de.dev>2024-06-16 11:20:28 +0200
commitc2c8796511c90930c41700f5fcd2043a5c4405c9 (patch)
treee121750568a77ad56e599660fd340494849a01fe /tests
parente7cd0d47a603e4199b0ee7daa2434fc0db602bad (diff)
downloadbdl-c2c8796511c90930c41700f5fcd2043a5c4405c9.tar.gz
bdl-c2c8796511c90930c41700f5fcd2043a5c4405c9.zip
Setup initial Pratt parser
Diffstat (limited to 'tests')
-rw-r--r--tests/expressions.bad4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/expressions.bad b/tests/expressions.bad
new file mode 100644
index 0000000..c992a7a
--- /dev/null
+++ b/tests/expressions.bad
@@ -0,0 +1,4 @@
11 + 2 * 5 - 2
2; 1 + 2 * (5 - 2)
3; (1 + 2 * (5 - 2))
4; (1 + 2 * 5 - 2)