blob: f759a9e1b45085baa77a16764440444ae2e238da [file] [log] [blame]
// compile-pass
// skip-codegen
// 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() {}