2014-03-01 03:59:15 +00:00
|
|
|
// This test is to make sure we don't just ICE if the trait
|
|
|
|
// method for an operator is not implemented properly.
|
|
|
|
// (In this case the mul method should take &f64 and not f64)
|
|
|
|
// See: #11450
|
|
|
|
|
2014-12-22 17:04:23 +00:00
|
|
|
use std::ops::Mul;
|
|
|
|
|
2014-04-05 01:19:33 +00:00
|
|
|
struct Vec1 {
|
|
|
|
x: f64
|
|
|
|
}
|
|
|
|
|
2014-12-01 22:52:10 +00:00
|
|
|
// Expecting value in input signature
|
2014-12-31 20:45:13 +00:00
|
|
|
impl Mul<f64> for Vec1 {
|
|
|
|
type Output = Vec1;
|
|
|
|
|
2014-12-01 22:52:10 +00:00
|
|
|
fn mul(self, s: &f64) -> Vec1 {
|
2015-01-12 06:01:44 +00:00
|
|
|
//~^ ERROR method `mul` has an incompatible type for trait
|
2014-04-05 01:19:33 +00:00
|
|
|
Vec1 {
|
2014-12-01 22:52:10 +00:00
|
|
|
x: self.x * *s
|
2014-04-05 01:19:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-01 03:59:15 +00:00
|
|
|
struct Vec2 {
|
|
|
|
x: f64,
|
|
|
|
y: f64
|
|
|
|
}
|
|
|
|
|
2014-04-05 01:19:33 +00:00
|
|
|
// Wrong type parameter ordering
|
2014-12-31 20:45:13 +00:00
|
|
|
impl Mul<Vec2> for Vec2 {
|
|
|
|
type Output = f64;
|
|
|
|
|
2014-12-01 22:52:10 +00:00
|
|
|
fn mul(self, s: f64) -> Vec2 {
|
2015-01-12 06:01:44 +00:00
|
|
|
//~^ ERROR method `mul` has an incompatible type for trait
|
2014-03-01 03:59:15 +00:00
|
|
|
Vec2 {
|
|
|
|
x: self.x * s,
|
|
|
|
y: self.y * s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-05 01:19:33 +00:00
|
|
|
struct Vec3 {
|
|
|
|
x: f64,
|
|
|
|
y: f64,
|
|
|
|
z: f64
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unexpected return type
|
2014-12-31 20:45:13 +00:00
|
|
|
impl Mul<f64> for Vec3 {
|
|
|
|
type Output = i32;
|
|
|
|
|
2014-12-01 22:52:10 +00:00
|
|
|
fn mul(self, s: f64) -> f64 {
|
2015-01-12 06:01:44 +00:00
|
|
|
//~^ ERROR method `mul` has an incompatible type for trait
|
2014-12-01 22:52:10 +00:00
|
|
|
s
|
2014-04-05 01:19:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-01 03:59:15 +00:00
|
|
|
pub fn main() {
|
2014-10-17 13:11:10 +00:00
|
|
|
// Check that the usage goes from the trait declaration:
|
|
|
|
|
|
|
|
let x: Vec1 = Vec1 { x: 1.0 } * 2.0; // this is OK
|
|
|
|
|
|
|
|
let x: Vec2 = Vec2 { x: 1.0, y: 2.0 } * 2.0; // trait had reversed order
|
2019-04-19 22:37:34 +00:00
|
|
|
//~^ ERROR mismatched types
|
|
|
|
//~| ERROR mismatched types
|
2014-10-17 13:11:10 +00:00
|
|
|
|
|
|
|
let x: i32 = Vec3 { x: 1.0, y: 2.0, z: 3.0 } * 2.0;
|
2014-03-01 03:59:15 +00:00
|
|
|
}
|