]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/issue-17904.rs
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / issue-17904.rs
index 6112623041a7d18a3010d5de55e95bec86c65a72..7d6a54f4be12e82df1c2eb2afe374484415a9de1 100644 (file)
@@ -1,5 +1,3 @@
-// compile-flags: -Z continue-parse-after-error
-
 struct Baz<U> where U: Eq(U); //This is parsed as the new Fn* style parenthesis syntax.
 struct Baz<U> where U: Eq(U) -> R; // Notice this parses as well.
 struct Baz<U>(U) where U: Eq; // This rightfully signals no error as well.