summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_fallible_conversions.stderr
blob: b918fdf774b5a4b23c8b69d2e5d15701e187e165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: use of a fallible conversion when an infallible one could be used
  --> $DIR/unnecessary_fallible_conversions.rs:4:23
   |
LL |     let _: i64 = 0i32.try_into().unwrap();
   |                       ^^^^^^^^^^^^^^^^^^^ help: use: `into()`
   |
   = note: `-D clippy::unnecessary-fallible-conversions` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::unnecessary_fallible_conversions)]`

error: use of a fallible conversion when an infallible one could be used
  --> $DIR/unnecessary_fallible_conversions.rs:5:23
   |
LL |     let _: i64 = 0i32.try_into().expect("can't happen");
   |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use: `into()`

error: aborting due to 2 previous errors