summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/unused/must_use-unit.stderr
blob: 7f25a19350862db0ea1d156626e4f32599e03927 (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