2020-09-02 10:40:56 +03:00
|
|
|
error[E0277]: the trait bound `T: Copy` is not satisfied
|
2020-01-18 14:57:56 -08:00
|
|
|
--> $DIR/wf-in-fn-ret.rs:10:16
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-01-18 14:57:56 -08:00
|
|
|
LL | fn bar<T>() -> MustBeCopy<T>
|
2020-09-02 10:40:56 +03:00
|
|
|
| ^^^^^^^^^^^^^ the trait `Copy` is not implemented for `T`
|
2019-12-26 13:43:33 +01:00
|
|
|
|
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `MustBeCopy`
|
2024-02-09 12:17:55 +00:00
|
|
|
--> $DIR/wf-in-fn-ret.rs:6:22
|
2021-07-31 09:26:55 -07:00
|
|
|
|
|
2024-02-09 12:17:55 +00:00
|
|
|
LL | struct MustBeCopy<T: Copy> {
|
|
|
|
|
| ^^^^ required by this bound in `MustBeCopy`
|
2024-11-28 20:22:46 +00:00
|
|
|
help: consider restricting type parameter `T` with trait `Copy`
|
2019-12-26 13:43:33 +01:00
|
|
|
|
|
2021-03-30 17:56:39 +08:00
|
|
|
LL | fn bar<T: std::marker::Copy>() -> MustBeCopy<T>
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++++++++++++++++++
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2024-02-09 12:17:55 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
|
--> $DIR/wf-in-fn-ret.rs:10:16
|
|
|
|
|
|
|
|
|
|
|
LL | fn bar<T>() -> MustBeCopy<T>
|
|
|
|
|
| --- ^^^^^^^^^^^^^ expected `MustBeCopy<T>`, found `()`
|
|
|
|
|
| |
|
|
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
|
|
|
|
|
|
|
|
|
|
= note: expected struct `MustBeCopy<T>`
|
|
|
|
|
found unit type `()`
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2024-02-09 12:17:55 +00:00
|
|
|
Some errors have detailed explanations: E0277, E0308.
|
|
|
|
|
For more information about an error, try `rustc --explain E0277`.
|