]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/trait-default-method-bound-subst4.rs
acaa74373f01f20f39c78a1f73791f11cc52a5fb
[rust.git] / src / test / run-pass / trait-default-method-bound-subst4.rs
1 // Copyright 2012 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
12 trait A<T> {
13     fn g(&self, x: uint) -> uint { x }
14     fn h(&self, x: T) { }
15 }
16
17 impl<T> A<T> for int { }
18
19 fn f<T, V: A<T>>(i: V, j: uint) -> uint {
20     i.g(j)
21 }
22
23 pub fn main () {
24     assert_eq!(f::<f64, int>(0, 2), 2);
25     assert_eq!(f::<uint, int>(0, 2), 2);
26 }