Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
fn f(_: X) -> X {
unimplemented!()
}
fn g<'a>(_: X<'a>) -> X<'a> {
type X<'a> = <&'a () as Trait>::Value;
trait Trait {
type Value;
impl<'a> Trait for &'a () {
type Value = ();
fn main() {}