summaryrefslogtreecommitdiffstats
path: root/src/forth/compiler.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/forth/compiler.rs')
-rw-r--r--src/forth/compiler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/forth/compiler.rs b/src/forth/compiler.rs
index b518b7e..5a6d502 100644
--- a/src/forth/compiler.rs
+++ b/src/forth/compiler.rs
@@ -242,7 +242,7 @@ mod tests {
use super::super::vm::OpCode;
use super::*;
- fn compiler_for(text: &str) -> Compiler {
+ fn compiler_for(text: &str) -> Compiler<'_> {
let mut p = Compiler::new(text);
p.compile().expect("badparse");
p