]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generic-associated-types/empty_generics.rs
Rollup merge of #101741 - andrewpollack:add-needs-unwind-ui-tests, r=tmandry
[rust.git] / src / test / ui / generic-associated-types / empty_generics.rs
1 trait Foo {
2     type Bar<,>;
3     //~^ ERROR expected one of `#`, `>`, `const`, identifier, or lifetime, found `,`
4 }
5
6 fn main() {}