summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-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