mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-19 17:44:21 +00:00
21 lines
561 B
Text
21 lines
561 B
Text
|
error: items after a test module
|
||
|
--> $DIR/root_module.rs:12:1
|
||
|
|
|
||
|
LL | mod tests {
|
||
|
| ^^^^^^^^^
|
||
|
...
|
||
|
LL | fn should_lint() {}
|
||
|
| ^^^^^^^^^^^^^^^^
|
||
|
LL |
|
||
|
LL | const SHOULD_ALSO_LINT: usize = 1;
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
LL | macro_rules! should_lint {
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D clippy::items-after-test-module` implied by `-D warnings`
|
||
|
= help: to override `-D warnings` add `#[allow(clippy::items_after_test_module)]`
|
||
|
= help: move the items to before the test module was defined
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|