]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/suggest-borrow-to-dyn-object.stderr
Rollup merge of #105795 - nicholasbishop:bishop-stabilize-efiapi, r=joshtriplett
[rust.git] / tests / ui / suggestions / suggest-borrow-to-dyn-object.stderr
1 error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
2   --> $DIR/suggest-borrow-to-dyn-object.rs:12:11
3    |
4 LL |     check(s);
5    |           ^ doesn't have a size known at compile-time
6    |
7    = help: within `OsStr`, the trait `Sized` is not implemented for `[u8]`
8    = note: required because it appears within the type `OsStr`
9    = note: required for the cast from `OsStr` to the object type `dyn AsRef<Path>`
10 help: consider borrowing the value, since `&OsStr` can be coerced into `dyn AsRef<Path>`
11    |
12 LL |     check(&s);
13    |           +
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.