rust/tests/ui/generic-associated-types/empty_generics.rs

7 lines
130 B
Rust

trait Foo {
type Bar<,>;
//~^ ERROR expected one of `#`, `>`, `const`, identifier, or lifetime, found `,`
}
fn main() {}