]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-3743.rs
Fix misspelled comments.
[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 // If `Mul` used an associated type for its output, this test would
12 // work more smoothly.
13 #![feature(old_orphan_check)]
14
15 use std::ops::Mul;
16
17 struct Vec2 {
18     x: f64,
19     y: f64
20 }
21
22 impl Copy for Vec2 {}
23
24 // methods we want to export as methods as well as operators
25 impl Vec2 {
26 #[inline(always)]
27     fn vmul(self, other: f64) -> Vec2 {
28         Vec2 { x: self.x * other, y: self.y * other }
29     }
30 }
31
32 // Right-hand-side operator visitor pattern
33 trait RhsOfVec2Mul<Result> { fn mul_vec2_by(&self, lhs: &Vec2) -> Result; }
34
35 // Vec2's implementation of Mul "from the other side" using the above trait
36 impl<Res, Rhs: RhsOfVec2Mul<Res>> Mul<Rhs> for Vec2 {
37     type Output = Res;
38
39     fn mul(self, rhs: Rhs) -> Res { rhs.mul_vec2_by(&self) }
40 }
41
42 // Implementation of 'f64 as right-hand-side of Vec2::Mul'
43 impl RhsOfVec2Mul<Vec2> for f64 {
44     fn mul_vec2_by(&self, lhs: &Vec2) -> Vec2 { lhs.vmul(*self) }
45 }
46
47 // Usage with failing inference
48 pub fn main() {
49     let a = Vec2 { x: 3.0f64, y: 4.0f64 };
50
51     // the following compiles and works properly
52     let v1: Vec2 = a * 3.0f64;
53     println!("{} {}", v1.x, v1.y);
54
55     // the following compiles but v2 will not be Vec2 yet and
56     // using it later will cause an error that the type of v2
57     // must be known
58     let v2 = a * 3.0f64;
59     println!("{} {}", v2.x, v2.y); // error regarding v2's type
60 }