Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
pub trait Tr<'a> {
type Out;
}
pub fn f<'a, T: Tr<'a>>() -> <T as Tr<'a>>::Out {}
//~^ ERROR mismatched types
pub fn main() {}