]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generic-associated-types/empty_generics.rs
Rollup merge of #102954 - GuillaumeGomez:cfg-hide-attr-checks, r=Manishearth
[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() {}