aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2024-06-16 22:03:13 +0200
committerBad Diode <bd@badd10de.dev>2024-06-16 22:03:13 +0200
commit3922b262aef17be3fcee90db969aca5b0edc617e (patch)
treec297ec5200e0c9002dfa3ea522c41cb48d6e1110 /tests
parentbf4aa41a445986658f4ee931305d9caf496e9072 (diff)
downloadbdl-3922b262aef17be3fcee90db969aca5b0edc617e.tar.gz
bdl-3922b262aef17be3fcee90db969aca5b0edc617e.zip
Add bitwise parsing operations
Diffstat (limited to 'tests')
-rw-r--r--tests/bitops.bad7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bitops.bad b/tests/bitops.bad
new file mode 100644
index 0000000..5582d36
--- /dev/null
+++ b/tests/bitops.bad
@@ -0,0 +1,7 @@
10x0f << 4
20xff >> 4
30x0f << 4 * 2 >> 3
4
50xff & 0xf >> 4 | 123
6~0xff
7~(0xff >> 4)