summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/mismatched_arg_count.rs
blob: 7841442987b727943f88d536ffcb62a83e097f93 (plain)
1
2
3
4
5
6
7
8
trait Trait<'a> {
    type Assoc;
}

type Alias<'a, T> = <T as Trait<'a>>::Assoc;

fn bar<'a, T: Trait<'a>>(_: Alias<'a, 'a, T>) {}
//~^ error: type alias takes 1 lifetime argument but 2 lifetime arguments were supplied