2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2012-11-28 20:34:30 +00:00
|
|
|
mod traits {
|
2015-03-26 00:06:52 +00:00
|
|
|
pub trait Foo { fn f(&self) -> isize; }
|
2012-11-28 20:34:30 +00:00
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
impl Foo for isize { fn f(&self) -> isize { 10 } }
|
2012-11-28 20:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
trait Quux: traits::Foo { }
|
2013-02-21 01:07:17 +00:00
|
|
|
impl<T:traits::Foo> Quux for T { }
|
2012-11-28 20:34:30 +00:00
|
|
|
|
|
|
|
// Foo is not in scope but because Quux is we can still access
|
|
|
|
// Foo's methods on a Quux bound typaram
|
2013-02-21 01:07:17 +00:00
|
|
|
fn f<T:Quux>(x: &T) {
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(x.f(), 10);
|
2012-11-28 20:34:30 +00:00
|
|
|
}
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2015-01-25 21:05:03 +00:00
|
|
|
f(&0)
|
2013-02-14 19:47:00 +00:00
|
|
|
}
|