2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2012-11-28 14:34:30 -06:00
|
|
|
// Testing that supertrait methods can be called on subtrait object types
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2012-11-28 14:34:30 -06:00
|
|
|
trait Foo {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn f(&self) -> isize;
|
2012-11-28 14:34:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
trait Bar : Foo {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn g(&self) -> isize;
|
2012-11-28 14:34:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
struct A {
|
2015-03-25 19:06:52 -05:00
|
|
|
x: isize
|
2012-11-28 14:34:30 -06:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Foo for A {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn f(&self) -> isize { 10 }
|
2012-11-28 14:34:30 -06:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Bar for A {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn g(&self) -> isize { 20 }
|
2012-11-28 14:34:30 -06:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-11-28 14:34:30 -06:00
|
|
|
let a = &A { x: 3 };
|
|
|
|
let afoo = a as &Foo;
|
|
|
|
let abar = a as &Bar;
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(afoo.f(), 10);
|
|
|
|
assert_eq!(abar.g(), 20);
|
|
|
|
assert_eq!(abar.f(), 10);
|
2012-11-28 14:34:30 -06:00
|
|
|
}
|