]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve/issue-5035-2.stderr
New upstream version 1.53.0+dfsg1
[rustc.git] / src / test / ui / resolve / issue-5035-2.stderr
CommitLineData
8faf50e0 1error[E0277]: the size for values of type `(dyn I + 'static)` cannot be known at compilation time
0731742a 2 --> $DIR/issue-5035-2.rs:4:8
32a655c1 3 |
8faf50e0
XL
4LL | fn foo(_x: K) {}
5 | ^^ doesn't have a size known at compile-time
32a655c1 6 |
1b1a35ee 7 = help: the trait `Sized` is not implemented for `(dyn I + 'static)`
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 |
cdc7bbd5
XL
11LL | fn foo(_x: &K) {}
12 | ^
32a655c1 13
041b39d2 14error: aborting due to previous error
32a655c1 15
0531ce1d 16For more information about this error, try `rustc --explain E0277`.