summaryrefslogtreecommitdiffstats
path: root/tests/ui/generics/generic-arg-mismatch-recover.rs
blob: 947f33414dbb9f459ee12223ba8708ce5178c91e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct Foo<'a, T: 'a>(&'a T);

struct Bar<'a>(&'a ());

fn main() {
    Foo::<'static, 'static, ()>(&0);
    //~^ ERROR struct takes 1 lifetime argument but 2 lifetime arguments were supplied

    Bar::<'static, 'static, ()>(&());
    //~^ ERROR struct takes 1 lifetime argument but 2 lifetime arguments were supplied
    //~| ERROR struct takes 0
}