]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-17904.rs
Rollup merge of #56470 - llogiq:process-termination-doctest, r=GuillaumeGomez
[rust.git] / src / test / ui / parser / issue-17904.rs
1 // compile-flags: -Z continue-parse-after-error
2
3 struct Baz<U> where U: Eq(U); //This is parsed as the new Fn* style parenthesis syntax.
4 struct Baz<U> where U: Eq(U) -> R; // Notice this parses as well.
5 struct Baz<U>(U) where U: Eq; // This rightfully signals no error as well.
6 struct Foo<T> where T: Copy, (T); //~ ERROR expected one of `:`, `==`, or `=`, found `;`
7
8 fn main() {}