]> git.lizzy.rs Git - rust.git/blob - tests/ui/generic-associated-types/empty_generics.rs
internally change regions to be covariant
[rust.git] / tests / 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() {}