From 3ac809d7f8c4f29bfcd0a52c7e168e783abc88df Mon Sep 17 00:00:00 2001 From: Arnaud Bailly Date: Wed, 25 Sep 2024 21:49:33 +0200 Subject: Extract IO operations to own module --- rust/src/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src/parser.rs') diff --git a/rust/src/parser.rs b/rust/src/parser.rs index 121a10f..2a5fef4 100644 --- a/rust/src/parser.rs +++ b/rust/src/parser.rs @@ -235,7 +235,7 @@ fn parse_number(token: &Token) -> Result { #[cfg(test)] mod tests { - use crate::parse_total; + use super::parse_total; use super::Token::*; use super::Value; -- cgit v1.2.3