2013-09-25 16:55:38 -05:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2013-09-25 16:55:38 -05:00
|
|
|
trait Base: Base2 + Base3{
|
2014-05-22 18:57:53 -05:00
|
|
|
fn foo(&self) -> String;
|
|
|
|
fn foo1(&self) -> String;
|
|
|
|
fn foo2(&self) -> String{
|
2014-05-25 05:17:19 -05:00
|
|
|
"base foo2".to_string()
|
2013-09-26 09:59:54 -05:00
|
|
|
}
|
2013-09-25 16:55:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
trait Base2: Base3{
|
2014-05-22 18:57:53 -05:00
|
|
|
fn baz(&self) -> String;
|
2013-09-25 16:55:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
trait Base3{
|
2014-05-22 18:57:53 -05:00
|
|
|
fn root(&self) -> String;
|
2013-09-25 16:55:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
trait Super: Base{
|
2014-05-22 18:57:53 -05:00
|
|
|
fn bar(&self) -> String;
|
2013-09-25 16:55:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct X;
|
|
|
|
|
|
|
|
impl Base for X {
|
2014-05-22 18:57:53 -05:00
|
|
|
fn foo(&self) -> String{
|
2014-05-25 05:17:19 -05:00
|
|
|
"base foo".to_string()
|
2013-09-25 16:55:38 -05:00
|
|
|
}
|
2014-05-22 18:57:53 -05:00
|
|
|
fn foo1(&self) -> String{
|
2014-05-25 05:17:19 -05:00
|
|
|
"base foo1".to_string()
|
2013-09-26 09:59:54 -05:00
|
|
|
}
|
2013-09-25 16:55:38 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Base2 for X {
|
2014-05-22 18:57:53 -05:00
|
|
|
fn baz(&self) -> String{
|
2014-05-25 05:17:19 -05:00
|
|
|
"base2 baz".to_string()
|
2013-09-25 16:55:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Base3 for X {
|
2014-05-22 18:57:53 -05:00
|
|
|
fn root(&self) -> String{
|
2014-05-25 05:17:19 -05:00
|
|
|
"base3 root".to_string()
|
2013-09-25 16:55:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Super for X {
|
2014-05-22 18:57:53 -05:00
|
|
|
fn bar(&self) -> String{
|
2014-05-25 05:17:19 -05:00
|
|
|
"super bar".to_string()
|
2013-09-25 16:55:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
let n = X;
|
|
|
|
let s = &n as &Super;
|
2014-05-25 05:17:19 -05:00
|
|
|
assert_eq!(s.bar(),"super bar".to_string());
|
|
|
|
assert_eq!(s.foo(),"base foo".to_string());
|
|
|
|
assert_eq!(s.foo1(),"base foo1".to_string());
|
|
|
|
assert_eq!(s.foo2(),"base foo2".to_string());
|
|
|
|
assert_eq!(s.baz(),"base2 baz".to_string());
|
|
|
|
assert_eq!(s.root(),"base3 root".to_string());
|
2013-09-25 16:55:38 -05:00
|
|
|
}
|