summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/items_after_test_module/in_submodule.stderr
blob: 4e99876365cf850e09ceefe4d0ad58dfa94436b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: items after a test module
  --> $DIR/auxiliary/submodule.rs:2:1
   |
LL | mod tests {}
   | ^^^^^^^^^
LL |
LL | fn in_submodule() {}
   | ^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::items-after-test-module` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::items_after_test_module)]`

error: aborting due to previous error