]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-17904.rs
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[rust.git] / src / test / ui / parser / issue-17904.rs
1 struct Baz<U> where U: Eq(U); //This is parsed as the new Fn* style parenthesis syntax.
2 struct Baz<U> where U: Eq(U) -> R; // Notice this parses as well.
3 struct Baz<U>(U) where U: Eq; // This rightfully signals no error as well.
4 struct Foo<T> where T: Copy, (T); //~ ERROR expected one of `:`, `==`, or `=`, found `;`
5
6 fn main() {}