2019-11-24 13:31:19 +00:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
|
|
|
--> $DIR/unsized-fn-param.rs:11:11
|
|
|
|
|
|
|
|
|
LL | foo11("bar", &"baz");
|
2022-08-16 06:27:22 +00:00
|
|
|
| ^^^^^ doesn't have a size known at compile-time
|
2019-11-24 13:31:19 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2023-05-11 02:10:56 +00:00
|
|
|
= note: required for the cast from `&'static str` to `&dyn AsRef<Path>`
|
|
|
|
help: consider borrowing the value, since `&&'static str` can be coerced into `&dyn AsRef<Path>`
|
2022-04-02 23:43:17 +00:00
|
|
|
|
|
|
|
|
LL | foo11(&"bar", &"baz");
|
|
|
|
| +
|
2019-11-24 13:31:19 +00:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
|
|
|
--> $DIR/unsized-fn-param.rs:13:19
|
|
|
|
|
|
|
|
|
LL | foo12(&"bar", "baz");
|
2022-08-16 06:27:22 +00:00
|
|
|
| ^^^^^ doesn't have a size known at compile-time
|
2019-11-24 13:31:19 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2023-05-11 02:10:56 +00:00
|
|
|
= note: required for the cast from `&'static str` to `&dyn AsRef<Path>`
|
|
|
|
help: consider borrowing the value, since `&&'static str` can be coerced into `&dyn AsRef<Path>`
|
2022-04-02 23:43:17 +00:00
|
|
|
|
|
|
|
|
LL | foo12(&"bar", &"baz");
|
|
|
|
| +
|
2019-11-24 13:31:19 +00:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
|
|
|
--> $DIR/unsized-fn-param.rs:16:11
|
|
|
|
|
|
|
|
|
LL | foo21("bar", &"baz");
|
2022-08-16 06:27:22 +00:00
|
|
|
| ^^^^^ doesn't have a size known at compile-time
|
2019-11-24 13:31:19 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2023-05-11 02:10:56 +00:00
|
|
|
= note: required for the cast from `&'static str` to `&dyn AsRef<str>`
|
|
|
|
help: consider borrowing the value, since `&&'static str` can be coerced into `&dyn AsRef<str>`
|
2022-04-02 23:43:17 +00:00
|
|
|
|
|
|
|
|
LL | foo21(&"bar", &"baz");
|
|
|
|
| +
|
2019-11-24 13:31:19 +00:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
|
|
|
--> $DIR/unsized-fn-param.rs:18:19
|
|
|
|
|
|
|
|
|
LL | foo22(&"bar", "baz");
|
2022-08-16 06:27:22 +00:00
|
|
|
| ^^^^^ doesn't have a size known at compile-time
|
2019-11-24 13:31:19 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2023-05-11 02:10:56 +00:00
|
|
|
= note: required for the cast from `&'static str` to `&dyn AsRef<str>`
|
|
|
|
help: consider borrowing the value, since `&&'static str` can be coerced into `&dyn AsRef<str>`
|
2022-04-02 23:43:17 +00:00
|
|
|
|
|
|
|
|
LL | foo22(&"bar", &"baz");
|
|
|
|
| +
|
2019-11-24 13:31:19 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|