moved mod test to top of file

This commit is contained in:
vorboyvo 2025-09-24 11:46:23 -04:00
parent a8f20af75d
commit 2a002bd286

View file

@ -2,6 +2,9 @@ use num_traits::Float;
mod parser; mod parser;
#[cfg(test)]
mod test;
/* /*
* NOTES * NOTES
* - each alternative should appear only once in a tree. need to figure out a * - each alternative should appear only once in a tree. need to figure out a
@ -83,6 +86,3 @@ impl<T: Eq, U: Float> Tree<T, U> {
fn main() { fn main() {
unimplemented!(); unimplemented!();
} }
#[cfg(test)]
mod test;