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