]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-3743.rs
auto merge of #19628 : jbranchaud/rust/add-string-as-string-doctest, r=steveklabnik
[rust.git] / src / test / run-pass / issue-3743.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 struct Vec2 {
12     x: f64,
13     y: f64
14 }
15
16 impl Copy for Vec2 {}
17
18 // methods we want to export as methods as well as operators
19 impl Vec2 {
20 #[inline(always)]
21     fn vmul(self, other: f64) -> Vec2 {
22         Vec2 { x: self.x * other, y: self.y * other }
23     }
24 }
25
26 // Right-hand-side operator visitor pattern
27 trait RhsOfVec2Mul<Result> { fn mul_vec2_by(&self, lhs: &Vec2) -> Result; }
28
29 // Vec2's implementation of Mul "from the other side" using the above trait
30 impl<Res, Rhs: RhsOfVec2Mul<Res>> Mul<Rhs,Res> for Vec2 {
31     fn mul(&self, rhs: &Rhs) -> Res { rhs.mul_vec2_by(self) }
32 }
33
34 // Implementation of 'f64 as right-hand-side of Vec2::Mul'
35 impl RhsOfVec2Mul<Vec2> for f64 {
36     fn mul_vec2_by(&self, lhs: &Vec2) -> Vec2 { lhs.vmul(*self) }
37 }
38
39 // Usage with failing inference
40 pub fn main() {
41     let a = Vec2 { x: 3.0f64, y: 4.0f64 };
42
43     // the following compiles and works properly
44     let v1: Vec2 = a * 3.0f64;
45     println!("{} {}", v1.x, v1.y);
46
47     // the following compiles but v2 will not be Vec2 yet and
48     // using it later will cause an error that the type of v2
49     // must be known
50     let v2 = a * 3.0f64;
51     println!("{} {}", v2.x, v2.y); // error regarding v2's type
52 }