Make wording less confusing

This commit is contained in:
varkor 2019-09-10 22:35:10 +01:00
parent 14e6947fa4
commit ef62e05062
5 changed files with 17 additions and 23 deletions

View file

@ -12,7 +12,7 @@ error[E0044]: foreign items may not have const parameters
LL | fn foo<const X: usize>();
| ^^^^^^^^^^^^^^^^^^^^^^^^^ can't have const parameters
|
= help: use specialization instead of const parameters by replacing them with concrete consts
= help: replace the const parameters with concrete consts
error[E0044]: foreign items may not have type or const parameters
--> $DIR/foreign-item-const-parameter.rs:7:5
@ -20,7 +20,7 @@ error[E0044]: foreign items may not have type or const parameters
LL | fn bar<T, const X: usize>(_: T);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't have type or const parameters
|
= help: use specialization instead of type or const parameters by replacing them with concrete types or consts
= help: replace the type or const parameters with concrete types or consts
error: aborting due to 2 previous errors

View file

@ -1,7 +1,7 @@
extern {
fn sqrt<T>(f: T) -> T;
//~^ ERROR foreign items may not have type parameters [E0044]
//~| HELP use specialization instead of type parameters by replacing them with concrete types
//~| HELP replace the type parameters with concrete types
//~| NOTE can't have type parameters
}

View file

@ -4,7 +4,7 @@ error[E0044]: foreign items may not have type parameters
LL | fn sqrt<T>(f: T) -> T;
| ^^^^^^^^^^^^^^^^^^^^^^ can't have type parameters
|
= help: use specialization instead of type parameters by replacing them with concrete types like `u32`
= help: replace the type parameters with concrete types like `u32`
error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0044]: foreign items may not have type parameters
LL | fn foo<T>();
| ^^^^^^^^^^^^ can't have type parameters
|
= help: use specialization instead of type parameters by replacing them with concrete types like `u32`
= help: replace the type parameters with concrete types like `u32`
error: aborting due to previous error