summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/empty_generics.rs
blob: 964c2972d4734014fd29e22769b78ebfa9f35526 (plain)
1
2
3
4
5
6
trait Foo {
    type Bar<,>;
    //~^ ERROR expected one of `#`, `>`, `const`, identifier, or lifetime, found `,`
}

fn main() {}