]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generic-associated-types/empty_generics.rs
Merge commit '5ff7b632a95bac6955611d85040859128902c580' into sync-rustfmt-subtree
[rust.git] / src / test / ui / generic-associated-types / empty_generics.rs
1 #![feature(generic_associated_types)]
2
3 trait Foo {
4     type Bar<,>;
5     //~^ ERROR expected one of `#`, `>`, `const`, identifier, or lifetime, found `,`
6 }
7
8 fn main() {}