blob: fbf60ce278df262de8b0842b1020c076e36061aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
struct Thing {
x: isize
}
impl Thing {
fn mul(&self, c: &isize) -> Thing {
Thing {x: self.x * *c}
}
}
fn main() {
let u = Thing {x: 2};
let _v = u.mul(&3); // This is ok
let w = u * 3; //~ ERROR binary operation `*` cannot be applied to type `Thing`
}
|