]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/traits-conditional-dispatch.rs
a94f73c2b6da7c3b9efc6db8d8ac715e3d239603
[rust.git] / src / test / run-pass / traits-conditional-dispatch.rs
1 // Copyright 2014 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 // Test that we are able to resolve conditional dispatch.  Here, the
12 // blanket impl for T:Copy coexists with an impl for Box<T>, because
13 // Box does not impl Copy.
14
15 trait Get {
16     fn get(&self) -> Self;
17 }
18
19 impl<T:Copy> Get for T {
20     fn get(&self) -> T { *self }
21 }
22
23 impl<T:Get> Get for Box<T> {
24     fn get(&self) -> Box<T> { box get_it(&**self) }
25 }
26
27 fn get_it<T:Get>(t: &T) -> T {
28     (*t).get()
29 }
30
31 fn main() {
32     assert_eq!(get_it(&1_u32), 1_u32);
33     assert_eq!(get_it(&1_u16), 1_u16);
34     assert_eq!(get_it(&Some(1_u16)), Some(1_u16));
35     assert_eq!(get_it(&box 1i), box 1i);
36 }