blob: f4f5ca64de73899b83bd113523dd667a12002e12 [file] [log] [blame]
// check-pass
// revisions: old re
#![cfg_attr(re, feature(re_rebalance_coherence))]
pub trait Foo<P> {}
pub trait Bar {
type Output: 'static;
}
impl Foo<i32> for i32 { }
impl<A:Bar> Foo<A::Output> for A { }
impl Bar for i32 {
type Output = u32;
}
fn main() {}