]> git.lizzy.rs Git - rust.git/blob - tests/ui/unsized-locals/issue-30276-feature-flagged.stderr
Rollup merge of #106321 - compiler-errors:delayed-bug-backtrace, r=Nilstrieb
[rust.git] / tests / ui / unsized-locals / issue-30276-feature-flagged.stderr
1 warning: the feature `unsized_locals` is incomplete and may not be safe to use and/or cause compiler crashes
2   --> $DIR/issue-30276-feature-flagged.rs:1:12
3    |
4 LL | #![feature(unsized_locals)]
5    |            ^^^^^^^^^^^^^^
6    |
7    = note: see issue #48055 <https://github.com/rust-lang/rust/issues/48055> for more information
8    = note: `#[warn(incomplete_features)]` on by default
9
10 error[E0277]: the size for values of type `[i32]` cannot be known at compilation time
11   --> $DIR/issue-30276-feature-flagged.rs:7:29
12    |
13 LL |     let _x: fn(_) -> Test = Test;
14    |                             ^^^^ doesn't have a size known at compile-time
15    |
16    = help: the trait `Sized` is not implemented for `[i32]`
17    = note: all function arguments must have a statically known size
18    = help: unsized fn params are gated as an unstable feature
19
20 error: aborting due to previous error; 1 warning emitted
21
22 For more information about this error, try `rustc --explain E0277`.