2020-10-17 19:59:51 -07:00
|
|
|
error[E0369]: cannot multiply `Vec<isize>` by `{integer}`
|
2019-03-27 13:13:09 -04:00
|
|
|
--> $DIR/pattern-tyvar-2.rs:3:71
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2018-12-16 22:21:47 -05:00
|
|
|
LL | fn foo(t: Bar) -> isize { match t { Bar::T1(_, Some(x)) => { return x * 3; } _ => { panic!(); } } }
|
2019-03-27 13:13:09 -04:00
|
|
|
| - ^ - {integer}
|
|
|
|
|
| |
|
2020-09-02 10:40:56 +03:00
|
|
|
| Vec<isize>
|
2024-06-25 10:00:30 +08:00
|
|
|
|
|
|
|
|
|
note: the foreign item type `Vec<isize>` doesn't implement `Mul<{integer}>`
|
|
|
|
|
--> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
|
|
|
|
|
|
|
|
|
|
|
= note: not implement `Mul<{integer}>`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|