Skip to content

Commit ac42f3f

Browse files
committed
correct erroneous pluralization of '1 type argument' error messages
This is in the matter of #37042.
1 parent 8e05e7e commit ac42f3f

6 files changed

+10
-7
lines changed

src/librustc_typeck/astconv.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -2218,10 +2218,12 @@ fn check_type_argument_count(tcx: TyCtxt, span: Span, supplied: usize,
22182218
} else {
22192219
"expected"
22202220
};
2221+
let arguments_plural = if required == 1 { "" } else { "s" };
22212222
struct_span_err!(tcx.sess, span, E0243, "wrong number of type arguments")
22222223
.span_label(
22232224
span,
2224-
&format!("{} {} type arguments, found {}", expected, required, supplied)
2225+
&format!("{} {} type argument{}, found {}",
2226+
expected, required, arguments_plural, supplied)
22252227
)
22262228
.emit();
22272229
} else if supplied > accepted {
@@ -2232,11 +2234,12 @@ fn check_type_argument_count(tcx: TyCtxt, span: Span, supplied: usize,
22322234
} else {
22332235
format!("expected {}", accepted)
22342236
};
2237+
let arguments_plural = if accepted == 1 { "" } else { "s" };
22352238

22362239
struct_span_err!(tcx.sess, span, E0244, "wrong number of type arguments")
22372240
.span_label(
22382241
span,
2239-
&format!("{} type arguments, found {}", expected, supplied)
2242+
&format!("{} type argument{}, found {}", expected, arguments_plural, supplied)
22402243
)
22412244
.emit();
22422245
}

src/test/compile-fail/E0243.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
struct Foo<T> { x: T }
1212
struct Bar { x: Foo }
1313
//~^ ERROR E0243
14-
//~| NOTE expected 1 type arguments, found 0
14+
//~| NOTE expected 1 type argument, found 0
1515

1616
fn main() {
1717
}

src/test/compile-fail/generic-type-less-params-with-defaults.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ struct Vec<T, A = Heap>(
1818
fn main() {
1919
let _: Vec;
2020
//~^ ERROR E0243
21-
//~| NOTE expected at least 1 type arguments, found 0
21+
//~| NOTE expected at least 1 type argument, found 0
2222
}

src/test/compile-fail/issue-14092.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
fn fn1(0: Box) {}
1212
//~^ ERROR E0243
13-
//~| NOTE expected 1 type arguments, found 0
13+
//~| NOTE expected 1 type argument, found 0
1414

1515
fn main() {}

src/test/compile-fail/typeck_type_placeholder_lifetime_1.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ struct Foo<'a, T:'a> {
1818
pub fn main() {
1919
let c: Foo<_, _> = Foo { r: &5 };
2020
//~^ ERROR E0244
21-
//~| NOTE expected 1 type arguments, found 2
21+
//~| NOTE expected 1 type argument, found 2
2222
}

src/test/compile-fail/typeck_type_placeholder_lifetime_2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ struct Foo<'a, T:'a> {
1818
pub fn main() {
1919
let c: Foo<_, usize> = Foo { r: &5 };
2020
//~^ ERROR E0244
21-
//~| NOTE expected 1 type arguments, found 2
21+
//~| NOTE expected 1 type argument, found 2
2222
}

0 commit comments

Comments
 (0)