diff --git a/compiler/gen_dev/tests/gen_num.rs b/compiler/gen_dev/tests/gen_num.rs index aa10fbb0e4..1c3f6d42b9 100644 --- a/compiler/gen_dev/tests/gen_num.rs +++ b/compiler/gen_dev/tests/gen_num.rs @@ -1,3 +1,9 @@ +#[macro_use] +extern crate pretty_assertions; + +#[macro_use] +extern crate indoc; + extern crate bumpalo; extern crate libc; @@ -6,12 +12,6 @@ mod helpers; #[cfg(all(test, target_os = "linux", any(target_arch = "x86_64"/*, target_arch = "aarch64"*/)))] mod gen_num { - #[macro_use] - extern crate pretty_assertions; - - #[macro_use] - extern crate indoc; - #[test] fn i64_values() { assert_evals_to!("0", 0, i64);