summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/unused/must_use-unit.stderr
blob: 9fcbc5074ea800ae4d1209e430afb2fe772dc1f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: unused return value of `foo` that must be used
  --> $DIR/must_use-unit.rs:13:5
   |
LL |     foo();
   |     ^^^^^
   |
note: the lint level is defined here
  --> $DIR/must_use-unit.rs:2:9
   |
LL | #![deny(unused_must_use)]
   |         ^^^^^^^^^^^^^^^

error: unused return value of `bar` that must be used
  --> $DIR/must_use-unit.rs:15:5
   |
LL |     bar();
   |     ^^^^^

error: aborting due to 2 previous errors