summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_fallible_conversions.stderr
blob: 26b152515ac7c08a7101ddaa57fa65a3f3ba3029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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: converting `i32` to `i64` cannot fail
   = 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()`
   |
   = note: converting `i32` to `i64` cannot fail

error: aborting due to 2 previous errors