20 lines
585 B
Plaintext
20 lines
585 B
Plaintext
error: an item was found after the testing module
|
|
--> $DIR/items_after_test_module.rs:18:1
|
|
|
|
|
LL | fn should_lint() {}
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: move the item to before the testing module was defined
|
|
= note: `-D clippy::items-after-test-module` implied by `-D warnings`
|
|
|
|
error: an item was found after the testing module
|
|
--> $DIR/items_after_test_module.rs:20:1
|
|
|
|
|
LL | const SHOULD_ALSO_LINT: usize = 1;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: move the item to before the testing module was defined
|
|
|
|
error: aborting due to 2 previous errors
|
|
|