ff2d506c2c
Reword E0044 and message for `!Send` types - Reword E0044 help. - Change error message for types that don't implement `Send` CC #45092, #46678, #24909, #33307.
12 lines
397 B
Plaintext
12 lines
397 B
Plaintext
error[E0044]: foreign items may not have type parameters
|
|
--> $DIR/E0044.rs:12:5
|
|
|
|
|
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`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0044`.
|