blob: 8e16f2de0d97a9b6266538ef0d3e7156183df631 [file] [log] [blame]
// compile-flags: -Cmetadata=aux
pub trait Trait {
type Output;
}
pub fn fun<T>(_: T) where T: Trait<Output=i32> {}