diff --git a/src/main.rs b/src/main.rs index 1dc351e..686957a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,6 +2,9 @@ use num_traits::Float; mod parser; +#[cfg(test)] +mod test; + /* * NOTES * - each alternative should appear only once in a tree. need to figure out a @@ -83,6 +86,3 @@ impl Tree { fn main() { unimplemented!(); } - -#[cfg(test)] -mod test;