summaryrefslogtreecommitdiffstats
path: root/src/test/ui/try-block/try-block-type-error.stderr
blob: 3e9a584a5510a1ff9b91a8ff42ea3444bcd01fb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0271]: type mismatch resolving `<Option<f32> as Try>::Output == {integer}`
  --> $DIR/try-block-type-error.rs:10:9
   |
LL |         42
   |         ^^
   |         |
   |         expected `f32`, found integer
   |         help: use a float literal: `42.0`

error[E0271]: type mismatch resolving `<Option<i32> as Try>::Output == ()`
  --> $DIR/try-block-type-error.rs:16:5
   |
LL |     };
   |     ^ expected `i32`, found `()`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0271`.