2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2015-03-26 19:06:26 +00:00
|
|
|
|
2015-03-22 10:38:42 +00:00
|
|
|
// The main purpose of this test is to ensure that different impls of the same
|
|
|
|
// trait can refer to each other without setting off the static recursion check
|
|
|
|
// (as long as there's no actual recursion).
|
|
|
|
|
2015-04-25 04:58:40 +00:00
|
|
|
trait Foo {
|
2015-03-22 10:38:42 +00:00
|
|
|
const BAR: u32;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct IsFoo1;
|
|
|
|
|
|
|
|
impl Foo for IsFoo1 {
|
|
|
|
const BAR: u32 = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct IsFoo2;
|
|
|
|
|
|
|
|
impl Foo for IsFoo2 {
|
|
|
|
const BAR: u32 = <IsFoo1 as Foo>::BAR;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert_eq!(<IsFoo1>::BAR, <IsFoo2 as Foo>::BAR);
|
|
|
|
}
|