summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/lint-renamed-allow.stderr
blob: 46f6a10de2743c291a6cfb5dbbcc846e38059d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: unused variable: `unused`
  --> $DIR/lint-renamed-allow.rs:8:17
   |
LL | fn main() { let unused = (); }
   |                 ^^^^^^ help: if this is intentional, prefix it with an underscore: `_unused`
   |
note: the lint level is defined here
  --> $DIR/lint-renamed-allow.rs:7:8
   |
LL | #[deny(unused)]
   |        ^^^^^^
   = note: `#[deny(unused_variables)]` implied by `#[deny(unused)]`

error: aborting due to previous error