summaryrefslogtreecommitdiffstats
path: root/tests/forth.rs
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-12-15 09:44:53 -0500
committerBrian Cully <bjc@spork.org>2025-12-15 09:44:53 -0500
commitf0000e8b134a2e68b1ddbb554b958aef79fc31f4 (patch)
tree008b458af4fd5ee947d37d3a41e70d590032ce92 /tests/forth.rs
parentd3674a9ea6e99beeb5d957d37632d1d8929d0206 (diff)
downloadautomathon-f0000e8b134a2e68b1ddbb554b958aef79fc31f4.tar.gz
automathon-f0000e8b134a2e68b1ddbb554b958aef79fc31f4.zip
vm: Add boolean operators for not, and, or, and xor
Diffstat (limited to 'tests/forth.rs')
-rw-r--r--tests/forth.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/forth.rs b/tests/forth.rs
index 2538419..cd743b9 100644
--- a/tests/forth.rs
+++ b/tests/forth.rs
@@ -3,7 +3,7 @@ use automathon::forth::{
vm::{VM, WordList},
};
-fn compiler_for(text: &str) -> Compiler {
+fn compiler_for(text: &str) -> Compiler<'_> {
let mut p = Compiler::new(text);
p.compile().expect("badparse");
p