]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generic-associated-types/empty_generics.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[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() {}