Skip to content

Commit 5558c64

Browse files
committed
Change error count messages
See #33525 for details.
1 parent 81734e0 commit 5558c64

File tree

248 files changed

+248
-252
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

248 files changed

+248
-252
lines changed

src/librustc_driver/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,7 @@ const BUG_REPORT_URL: &'static str = "https://github.com/rust-lang/rust/blob/mas
118118
fn abort_msg(err_count: usize) -> String {
119119
match err_count {
120120
0 => "aborting with no errors (maybe a bug?)".to_owned(),
121-
1 => "aborting due to previous error".to_owned(),
122-
e => format!("aborting due to {} previous errors", e),
121+
_ => "aborting due to previous error(s)".to_owned(),
123122
}
124123
}
125124

src/librustc_errors/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -501,10 +501,7 @@ impl Handler {
501501

502502
return;
503503
}
504-
1 => s = "aborting due to previous error".to_string(),
505-
_ => {
506-
s = format!("aborting due to {} previous errors", self.err_count.get());
507-
}
504+
_ => s = "aborting due to previous error(s)".to_string(),
508505
}
509506

510507
panic!(self.fatal(&s));

src/test/ui/borrowck/borrowck-in-static.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ error[E0507]: cannot move out of captured outer variable in an `Fn` closure
66
15 | Box::new(|| x) //~ ERROR cannot move out of captured outer variable
77
| ^ cannot move out of captured outer variable in an `Fn` closure
88

9-
error: aborting due to previous error
9+
error: aborting due to previous error(s)
1010

src/test/ui/borrowck/unboxed-closures-move-upvar-from-non-once-ref-closure.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error[E0507]: cannot move out of captured outer variable in an `Fn` closure
77
21 | y.into_iter();
88
| ^ cannot move out of captured outer variable in an `Fn` closure
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/check_match/issue-35609.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ error[E0004]: non-exhaustive patterns: `Some(B)`, `Some(C)`, `Some(D)` and 2 mor
4646
49 | match Some(A) {
4747
| ^^^^^^^ patterns `Some(B)`, `Some(C)`, `Some(D)` and 2 more not covered
4848

49-
error: aborting due to 8 previous errors
49+
error: aborting due to previous error(s)
5050

src/test/ui/codemap_tests/bad-format-args.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ error: expected token: `,`
2222
|
2323
= note: this error originates in a macro outside of the current crate
2424

25-
error: aborting due to 3 previous errors
25+
error: aborting due to previous error(s)
2626

src/test/ui/codemap_tests/coherence-overlapping-inherent-impl-trait.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ error[E0592]: duplicate definitions with name `f`
66
15 | impl C { fn f() {} }
77
| --------- other definition for `f`
88

9-
error: aborting due to previous error
9+
error: aborting due to previous error(s)
1010

src/test/ui/codemap_tests/empty_span.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ error[E0321]: cross-crate traits with a default impl, like `std::marker::Send`,
44
17 | unsafe impl Send for &'static Foo { }
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66

7-
error: aborting due to previous error
7+
error: aborting due to previous error(s)
88

src/test/ui/codemap_tests/huge_multispan_highlight.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error: cannot borrow immutable local variable `x` as mutable
77
100 | let y = &mut x;
88
| ^ cannot borrow mutably
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/codemap_tests/issue-11715.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ error[E0499]: cannot borrow `x` as mutable more than once at a time
88
101 | }
99
| - first borrow ends here
1010

11-
error: aborting due to previous error
11+
error: aborting due to previous error(s)
1212

src/test/ui/codemap_tests/issue-28308.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ error: cannot apply unary operator `!` to type `&'static str`
66
|
77
= note: this error originates in a macro outside of the current crate
88

9-
error: aborting due to previous error
9+
error: aborting due to previous error(s)
1010

src/test/ui/codemap_tests/one_line.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error[E0499]: cannot borrow `v` as mutable more than once at a time
77
| | second mutable borrow occurs here
88
| first mutable borrow occurs here
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/codemap_tests/overlapping_inherent_impls.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ error[E0592]: duplicate definitions with name `baz`
2525
43 | fn baz(&self) {}
2626
| ---------------- other definition for `baz`
2727

28-
error: aborting due to 3 previous errors
28+
error: aborting due to previous error(s)
2929

src/test/ui/codemap_tests/overlapping_spans.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error[E0509]: cannot move out of type `S`, which implements the `Drop` trait
77
| | hint: to prevent move, use `ref _s` or `ref mut _s`
88
| cannot move out of here
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/codemap_tests/tab.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ error[E0425]: cannot find value `bar` in this scope
44
14 | \tbar;
55
| \t^^^ not found in this scope
66

7-
error: aborting due to previous error
7+
error: aborting due to previous error(s)
88

src/test/ui/codemap_tests/unicode.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ error: invalid ABI: expected one of [cdecl, stdcall, fastcall, vectorcall, aapcs
44
11 | extern "路濫狼á́́" fn foo() {}
55
| ^^^^^^^^
66

7-
error: aborting due to previous error
7+
error: aborting due to previous error(s)
88

src/test/ui/coercion-missing-tail-expected-type.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ help: consider removing this semicolon:
1515
14 | x + 1;
1616
| ^
1717

18-
error: aborting due to previous error
18+
error: aborting due to previous error(s)
1919

src/test/ui/compare-method/proj-outlives-region.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ error[E0276]: impl has stricter requirements than trait
1111
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
1212
= note: for more information, see issue #37166 <https://github.com/rust-lang/rust/issues/37166>
1313

14-
error: aborting due to previous error
14+
error: aborting due to previous error(s)
1515

src/test/ui/compare-method/region-extra-2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ error[E0276]: impl has stricter requirements than trait
1010
22 | | }
1111
| |_____^ impl has extra requirement `'a: 'b`
1212

13-
error: aborting due to previous error
13+
error: aborting due to previous error(s)
1414

src/test/ui/compare-method/region-extra.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error[E0276]: impl has stricter requirements than trait
77
22 | fn foo() where 'a: 'b { }
88
| ^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `'a: 'b`
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/compare-method/region-unrelated.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ error[E0276]: impl has stricter requirements than trait
1111
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
1212
= note: for more information, see issue #37166 <https://github.com/rust-lang/rust/issues/37166>
1313

14-
error: aborting due to previous error
14+
error: aborting due to previous error(s)
1515

src/test/ui/compare-method/reordered-type-param.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ error[E0053]: method `b` has an incompatible type for trait
1010
= note: expected type `fn(&E, F) -> F`
1111
found type `fn(&E, G) -> G`
1212

13-
error: aborting due to previous error
13+
error: aborting due to previous error(s)
1414

src/test/ui/compare-method/trait-bound-on-type-parameter.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error[E0276]: impl has stricter requirements than trait
77
25 | fn b<F: Sync, G>(&self, _x: F) -> F { panic!() } //~ ERROR E0276
88
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `F: std::marker::Sync`
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/compare-method/traits-misc-mismatch-1.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ error[E0276]: impl has stricter requirements than trait
6161
76 | fn method<G: Getter<usize>>(&self) {}
6262
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `G: Getter<usize>`
6363

64-
error: aborting due to 7 previous errors
64+
error: aborting due to previous error(s)
6565

src/test/ui/compare-method/traits-misc-mismatch-2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ error[E0276]: impl has stricter requirements than trait
1010
26 | | }
1111
| |_____^ impl has extra requirement `U: Iterator<B>`
1212

13-
error: aborting due to previous error
13+
error: aborting due to previous error(s)
1414

src/test/ui/cross-crate-macro-backtrace/main.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ error: invalid reference to argument `0` (no arguments given)
66
|
77
= note: this error originates in a macro outside of the current crate
88

9-
error: aborting due to previous error
9+
error: aborting due to previous error(s)
1010

src/test/ui/did_you_mean/E0178.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ error[E0178]: expected a path on the left-hand side of `+`, not `fn() -> Foo`
2222
17 | z: fn() -> Foo + 'a,
2323
| ^^^^^^^^^^^^^^^^ perhaps you forgot parentheses?
2424

25-
error: aborting due to 4 previous errors
25+
error: aborting due to previous error(s)
2626

src/test/ui/did_you_mean/issue-21659-show-relevant-trait-impls-1.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ error[E0277]: the trait bound `Bar: Foo<usize>` is not satisfied
88
<Bar as Foo<i32>>
99
<Bar as Foo<u8>>
1010

11-
error: aborting due to previous error
11+
error: aborting due to previous error(s)
1212

src/test/ui/did_you_mean/issue-21659-show-relevant-trait-impls-2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ error[E0277]: the trait bound `Bar: Foo<usize>` is not satisfied
1111
<Bar as Foo<u8>>
1212
and 2 others
1313

14-
error: aborting due to previous error
14+
error: aborting due to previous error(s)
1515

src/test/ui/did_you_mean/issue-31424.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ error: cannot borrow immutable argument `self` as mutable
1515
23 | (&mut self).bar();
1616
| ^^^^ cannot borrow mutably
1717

18-
error: aborting due to 2 previous errors
18+
error: aborting due to previous error(s)
1919

src/test/ui/did_you_mean/issue-34126.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error: cannot borrow immutable argument `self` as mutable
77
| try removing `&mut` here
88
| cannot reborrow mutably
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/did_you_mean/issue-34337.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error: cannot borrow immutable local variable `key` as mutable
77
| try removing `&mut` here
88
| cannot reborrow mutably
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/did_you_mean/issue-35937.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ error: cannot assign to immutable field `s.x`
2222
30 | s.x += 1;
2323
| ^^^^^^^^ cannot mutably borrow immutable field
2424

25-
error: aborting due to 3 previous errors
25+
error: aborting due to previous error(s)
2626

src/test/ui/did_you_mean/issue-36798.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ error: no field `baz` on type `Foo`
44
17 | f.baz;
55
| ^^^ did you mean `bar`?
66

7-
error: aborting due to previous error
7+
error: aborting due to previous error(s)
88

src/test/ui/did_you_mean/issue-36798_unknown_field.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ error: no field `zz` on type `Foo`
44
17 | f.zz;
55
| ^^ unknown field
66

7-
error: aborting due to previous error
7+
error: aborting due to previous error(s)
88

src/test/ui/did_you_mean/issue-37139.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error: cannot borrow immutable local variable `x` as mutable
77
| try removing `&mut` here
88
| cannot reborrow mutably
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/did_you_mean/issue-38054-do-not-show-unresolved-names.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ error[E0432]: unresolved import `Foo1`
1010
13 | use Foo1;
1111
| ^^^^ no `Foo1` in the root
1212

13-
error: aborting due to 2 previous errors
13+
error: aborting due to previous error(s)
1414

src/test/ui/did_you_mean/issue-38147-1.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ error[E0389]: cannot borrow data mutably in a `&` reference
66
27 | self.s.push('x');
77
| ^^^^^^ assignment into an immutable reference
88

9-
error: aborting due to previous error
9+
error: aborting due to previous error(s)
1010

src/test/ui/did_you_mean/issue-38147-2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error: cannot borrow immutable borrowed content `*self.s` as mutable
77
17 | self.s.push('x');
88
| ^^^^^^ cannot borrow as mutable
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/did_you_mean/issue-38147-3.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ error: cannot borrow immutable borrowed content `*self.s` as mutable
77
17 | self.s.push('x');
88
| ^^^^^^ cannot borrow as mutable
99

10-
error: aborting due to previous error
10+
error: aborting due to previous error(s)
1111

src/test/ui/did_you_mean/issue-38147-4.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ error[E0389]: cannot borrow data mutably in a `&` reference
66
16 | f.s.push('x');
77
| ^^^ assignment into an immutable reference
88

9-
error: aborting due to previous error
9+
error: aborting due to previous error(s)
1010

src/test/ui/did_you_mean/issue-39544.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,5 @@ error: cannot assign to immutable borrowed content `*x.0`
9696
58 | *x.0 = 1;
9797
| ^^^^^^^^ cannot borrow as mutable
9898

99-
error: aborting due to 12 previous errors
99+
error: aborting due to previous error(s)
100100

src/test/ui/did_you_mean/issue-39802-show-5-trait-impls.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ error[E0277]: the trait bound `bool: Foo<i32>` is not satisfied
3939
and 2 others
4040
= note: required by `Foo::bar`
4141

42-
error: aborting due to 3 previous errors
42+
error: aborting due to previous error(s)
4343

src/test/ui/did_you_mean/issue-40006.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ error[E0038]: the trait `X` cannot be made into an object
6464
|
6565
= note: method `xxx` has no receiver
6666

67-
error: aborting due to previous error
67+
error: aborting due to previous error(s)
6868

src/test/ui/did_you_mean/issue-40396.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ error: chained comparison operators require parentheses
3030
|
3131
= help: use `::<...>` instead of `<...>` if you meant to specify type arguments
3232

33-
error: aborting due to 4 previous errors
33+
error: aborting due to previous error(s)
3434

src/test/ui/did_you_mean/issue-40823.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ error: cannot borrow immutable borrowed content `*buf` as mutable
44
13 | buf.iter_mut();
55
| ^^^ cannot borrow as mutable
66

7-
error: aborting due to previous error
7+
error: aborting due to previous error(s)
88

src/test/ui/did_you_mean/issue-41679.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ error: `~` can not be used as a unary operator
66
|
77
= help: use `!` instead of `~` if you meant to perform bitwise negation
88

9-
error: aborting due to previous error
9+
error: aborting due to previous error(s)
1010

src/test/ui/did_you_mean/recursion_limit.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ error[E0275]: overflow evaluating the requirement `K: std::marker::Send`
1717
= note: required because it appears within the type `A`
1818
= note: required by `is_send`
1919

20-
error: aborting due to previous error
20+
error: aborting due to previous error(s)
2121

src/test/ui/did_you_mean/recursion_limit_deref.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ error[E0308]: mismatched types
1919
= note: expected type `&Bottom`
2020
found type `&Top`
2121

22-
error: aborting due to 3 previous errors
22+
error: aborting due to previous error(s)
2323

src/test/ui/did_you_mean/trait-object-reference-without-parens-suggestion.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ error[E0038]: the trait `std::marker::Copy` cannot be made into an object
1818
|
1919
= note: the trait cannot require that `Self : Sized`
2020

21-
error: aborting due to previous error
21+
error: aborting due to previous error(s)
2222

src/test/ui/dropck/dropck-eyepatch-extern-crate.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ error: `c` does not live long enough
4242
|
4343
= note: values in a scope are dropped in the opposite order they are created
4444

45-
error: aborting due to 4 previous errors
45+
error: aborting due to previous error(s)
4646

src/test/ui/dropck/dropck-eyepatch-implies-unsafe-impl.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ error[E0569]: requires an `unsafe impl` declaration due to `#[may_dangle]` attri
2020
43 | | }
2121
| |_^
2222

23-
error: aborting due to 2 previous errors
23+
error: aborting due to previous error(s)
2424

src/test/ui/dropck/dropck-eyepatch-reorder.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ error: `c` does not live long enough
4242
|
4343
= note: values in a scope are dropped in the opposite order they are created
4444

45-
error: aborting due to 4 previous errors
45+
error: aborting due to previous error(s)
4646

src/test/ui/dropck/dropck-eyepatch.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ error: `c` does not live long enough
4242
|
4343
= note: values in a scope are dropped in the opposite order they are created
4444

45-
error: aborting due to 4 previous errors
45+
error: aborting due to previous error(s)
4646

src/test/ui/fmt/format-string-error.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ error: invalid format string: unmatched `}` found
1616
= note: if you intended to print `}`, you can escape it using `}}`
1717
= note: this error originates in a macro outside of the current crate
1818

19-
error: aborting due to 2 previous errors
19+
error: aborting due to previous error(s)
2020

src/test/ui/fn_once-moved.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ error[E0382]: use of moved value: `debug_dump_dict`
88
|
99
= help: closure was moved because it only implements `FnOnce`
1010

11-
error: aborting due to previous error
11+
error: aborting due to previous error(s)
1212

0 commit comments

Comments
 (0)