summaryrefslogtreecommitdiffstats
path: root/tests/ui/wrong-mul-method-signature.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/wrong-mul-method-signature.stderr (renamed from src/test/ui/wrong-mul-method-signature.stderr)16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/test/ui/wrong-mul-method-signature.stderr b/tests/ui/wrong-mul-method-signature.stderr
index 9f8896f01..504a6032b 100644
--- a/src/test/ui/wrong-mul-method-signature.stderr
+++ b/tests/ui/wrong-mul-method-signature.stderr
@@ -7,8 +7,8 @@ LL | fn mul(self, s: &f64) -> Vec1 {
| expected `f64`, found `&f64`
| help: change the parameter type to match the trait: `f64`
|
- = note: expected fn pointer `fn(Vec1, f64) -> Vec1`
- found fn pointer `fn(Vec1, &f64) -> Vec1`
+ = note: expected signature `fn(Vec1, f64) -> Vec1`
+ found signature `fn(Vec1, &f64) -> Vec1`
error[E0053]: method `mul` has an incompatible type for trait
--> $DIR/wrong-mul-method-signature.rs:33:21
@@ -19,8 +19,8 @@ LL | fn mul(self, s: f64) -> Vec2 {
| expected struct `Vec2`, found `f64`
| help: change the parameter type to match the trait: `Vec2`
|
- = note: expected fn pointer `fn(Vec2, Vec2) -> f64`
- found fn pointer `fn(Vec2, f64) -> Vec2`
+ = note: expected signature `fn(Vec2, Vec2) -> f64`
+ found signature `fn(Vec2, f64) -> Vec2`
error[E0053]: method `mul` has an incompatible type for trait
--> $DIR/wrong-mul-method-signature.rs:52:29
@@ -31,14 +31,16 @@ LL | fn mul(self, s: f64) -> f64 {
| expected `i32`, found `f64`
| help: change the output type to match the trait: `i32`
|
- = note: expected fn pointer `fn(Vec3, _) -> i32`
- found fn pointer `fn(Vec3, _) -> f64`
+ = note: expected signature `fn(Vec3, _) -> i32`
+ found signature `fn(Vec3, _) -> f64`
error[E0308]: mismatched types
--> $DIR/wrong-mul-method-signature.rs:63:45
|
LL | let x: Vec2 = Vec2 { x: 1.0, y: 2.0 } * 2.0; // trait had reversed order
- | ^^^ expected struct `Vec2`, found floating-point number
+ | ----------------------- ^^^ expected struct `Vec2`, found floating-point number
+ | |
+ | expected because this is `Vec2`
error[E0308]: mismatched types
--> $DIR/wrong-mul-method-signature.rs:63:19