about summary refs log tree commit diff
path: root/tests/ui/binop/binop-mul-i32-f32.stderr
blob: dfb96a078cc6c5977a4ca405c92cf8e3307a660d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0277]: cannot multiply `i32` by `f32`
  --> $DIR/binop-mul-i32-f32.rs:2:7
   |
LL |     x * y
   |       ^ no implementation for `i32 * f32`
   |
   = help: the trait `Mul<f32>` is not implemented for `i32`
   = help: the following other types implement trait `Mul<Rhs>`:
             `&i32` implements `Mul<i32>`
             `&i32` implements `Mul`
             `i32` implements `Mul<&i32>`
             `i32` implements `Mul`

error: aborting due to 1 previous error

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