]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-41229-ref-str.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-41229-ref-str.stderr
CommitLineData
8faf50e0 1error[E0277]: the size for values of type `str` cannot be known at compilation time
74b04a01 2 --> $DIR/issue-41229-ref-str.rs:1:16
8faf50e0
XL
3 |
4LL | pub fn example(ref s: str) {}
74b04a01 5 | ^^^^^ doesn't have a size known at compile-time
8faf50e0 6 |
1b1a35ee 7 = help: the trait `Sized` is not implemented for `str`
29967ef6 8 = help: unsized fn params are gated as an unstable feature
3dfed10e
XL
9help: function arguments must have a statically known size, borrowed types always have a known size
10 |
11LL | pub fn example(ref s: &str) {}
94222f64 12 | +
8faf50e0
XL
13
14error: aborting due to previous error
15
16For more information about this error, try `rustc --explain E0277`.