rust/src/test/ui/error-codes/E0044.stderr
bors ff2d506c2c Auto merge of #48138 - estebank:issue-45092, r=nikomatsakis
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.
2018-03-15 13:16:09 +00:00

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`.