2020-10-18 02:59:51 +00:00
|
|
|
error[E0369]: cannot multiply `Vec<isize>` by `{integer}`
|
2019-03-27 17:13:09 +00:00
|
|
|
--> $DIR/pattern-tyvar-2.rs:3:71
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-12-17 03:21:47 +00:00
|
|
|
LL | fn foo(t: Bar) -> isize { match t { Bar::T1(_, Some(x)) => { return x * 3; } _ => { panic!(); } } }
|
2019-03-27 17:13:09 +00:00
|
|
|
| - ^ - {integer}
|
|
|
|
| |
|
2020-09-02 07:40:56 +00:00
|
|
|
| Vec<isize>
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|