blob: 51ab7de1c546ca8f2bf922c11cf17a392b010563 [file] [log] [blame]
// compile-flags: -Cmetadata=aux
pub trait Foo {
type Bar;
fn foo(&self) {}
}
pub struct Bar;
impl Foo for Bar {
type Bar = i32;
}