blob: 6eb25a92f34133587558e8196be83835d03d9a88 [file] [log] [blame]
#![allow(incomplete_features)]
#![feature(generic_associated_types)]
trait Foo {
type Bar<,>;
//~^ ERROR expected one of `#`, `>`, `const`, identifier, or lifetime, found `,`
}
fn main() {}