summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binop/binop-mul-i32-f32.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/binop/binop-mul-i32-f32.stderr')
-rw-r--r--src/test/ui/binop/binop-mul-i32-f32.stderr16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/binop/binop-mul-i32-f32.stderr b/src/test/ui/binop/binop-mul-i32-f32.stderr
deleted file mode 100644
index c986bc3fd..000000000
--- a/src/test/ui/binop/binop-mul-i32-f32.stderr
+++ /dev/null
@@ -1,16 +0,0 @@
-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>`:
- <&'a i32 as Mul<i32>>
- <&i32 as Mul<&i32>>
- <i32 as Mul<&i32>>
- <i32 as Mul>
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0277`.