]> git.proxmox.com Git - rustc.git/blob - src/test/ui/error-codes/E0277.stderr
New upstream version 1.47.0~beta.2+dfsg1
[rustc.git] / src / test / ui / error-codes / E0277.stderr
1 error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
2 --> $DIR/E0277.rs:13:6
3 |
4 LL | fn f(p: Path) { }
5 | ^ doesn't have a size known at compile-time
6 |
7 = help: within `std::path::Path`, the trait `std::marker::Sized` is not implemented for `[u8]`
8 = note: required because it appears within the type `std::path::Path`
9 = help: unsized locals are gated as an unstable feature
10 help: function arguments must have a statically known size, borrowed types always have a known size
11 |
12 LL | fn f(p: &Path) { }
13 | ^
14
15 error[E0277]: the trait bound `i32: Foo` is not satisfied
16 --> $DIR/E0277.rs:17:15
17 |
18 LL | fn some_func<T: Foo>(foo: T) {
19 | --- required by this bound in `some_func`
20 ...
21 LL | some_func(5i32);
22 | ^^^^ the trait `Foo` is not implemented for `i32`
23
24 error: aborting due to 2 previous errors
25
26 For more information about this error, try `rustc --explain E0277`.