summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-8821.stderr
blob: 94ebb20918ed51c80c22002a4ab66804cdccc33b (plain)
1
2
3
4
5
6
7
8
9
10
11
error: this let-binding has unit value
  --> $DIR/ice-8821.rs:7:5
   |
LL |     let _: () = FN();
   |     ^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `FN();`
   |
   = note: `-D clippy::let-unit-value` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::let_unit_value)]`

error: aborting due to 1 previous error