summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/tests_outside_test_module.stderr
blob: 125a79d6edfed9e98eb528a5f17cbda967a902ee (plain)
1
2
3
4
5
6
7
8
9
10
11
error: this function marked with #[test] is outside a #[cfg(test)] module
  --> $DIR/tests_outside_test_module.rs:11: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`

error: aborting due to previous error