summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/items_after_test_module/root_module.stderr
blob: 17b07cc32f4e3f24f069d39378298d7b1681cd3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 1 previous error