mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
12 lines
437 B
Text
12 lines
437 B
Text
error: this function marked with #[test] is outside a #[cfg(test)] module
|
|
--> $DIR/tests_outside_test_module.rs:10:1
|
|
|
|
|
LL | fn my_test() {}
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: move it to a testing module marked with #[cfg(test)]
|
|
= note: `-D clippy::tests-outside-test-module` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::tests_outside_test_module)]`
|
|
|
|
error: aborting due to previous error
|
|
|