Skip to content

Commit 860dce7

Browse files
committed
Remove unecessary -Z continue-parse-after-error from tests
1 parent aee7012 commit 860dce7

39 files changed

+39
-39
lines changed

src/test/ui/extern/extern-const.fixed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
// run-rustfix
88
// ignore-wasm32 no external library to link to.
9-
// compile-flags: -g -Z continue-parse-after-error
9+
// compile-flags: -g
1010
#![feature(rustc_private)]
1111
extern crate libc;
1212

src/test/ui/extern/extern-const.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
// run-rustfix
88
// ignore-wasm32 no external library to link to.
9-
// compile-flags: -g -Z continue-parse-after-error
9+
// compile-flags: -g
1010
#![feature(rustc_private)]
1111
extern crate libc;
1212

src/test/ui/fmt/format-string-error-2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// compile-flags: -Z continue-parse-after-error
1+
22
// ignore-tidy-tab
33

44
fn main() {

src/test/ui/impl-trait/impl-trait-plus-priority.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// compile-flags: -Z parse-only -Z continue-parse-after-error
1+
// compile-flags: -Z parse-only
22

33
fn f() -> impl A + {} // OK
44
fn f() -> impl A + B {} // OK

src/test/ui/issues/issue-28433.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// compile-flags: -Z continue-parse-after-error
1+
22

33
enum Bird {
44
pub Duck,

src/test/ui/issues/issue-36638.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// compile-flags: -Z continue-parse-after-error
1+
22

33
struct Foo<Self>(Self);
44
//~^ ERROR expected identifier, found keyword `Self`

src/test/ui/parser/associated-types-project-from-hrtb-explicit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// compile-flags: -Z continue-parse-after-error
1+
22

33
// Test you can't use a higher-ranked trait bound inside of a qualified
44
// path (just won't parse).

src/test/ui/parser/bad-lit-suffixes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// compile-flags: -Z continue-parse-after-error
1+
22

33

44
extern

src/test/ui/parser/bounds-type.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// compile-flags: -Z parse-only -Z continue-parse-after-error
1+
// compile-flags: -Z parse-only
22

33
struct S<
44
T: 'a + Tr, // OK

src/test/ui/parser/doc-after-struct-field.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// compile-flags: -Z continue-parse-after-error
1+
22

33
struct X {
44
a: u8 /** document a */,

0 commit comments

Comments
 (0)