2023-02-11 23:01:22 +00:00
|
|
|
error[E0277]: the trait bound `[u8]: AutoTrait` is not satisfied in `str`
|
|
|
|
--> $DIR/str-contains-slice-conceptually.rs:11:22
|
|
|
|
|
|
|
|
|
LL | needs_auto_trait::<str>();
|
|
|
|
| ^^^ within `str`, the trait `AutoTrait` is not implemented for `[u8]`
|
|
|
|
|
|
2023-02-14 21:19:39 +00:00
|
|
|
= note: `str` is considered to contain a `[u8]` slice for auto trait purposes
|
2023-02-11 23:01:22 +00:00
|
|
|
note: required by a bound in `needs_auto_trait`
|
|
|
|
--> $DIR/str-contains-slice-conceptually.rs:8:24
|
|
|
|
|
|
|
|
|
LL | fn needs_auto_trait<T: AutoTrait + ?Sized>() {}
|
|
|
|
| ^^^^^^^^^ required by this bound in `needs_auto_trait`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-02-11 23:01:22 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|