rust/tests/ui/unsized-locals/issue-30276-feature-flagged.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
227 B
Rust
Raw Normal View History

#![feature(unsized_locals)]
2020-05-23 07:35:22 -05:00
//~^ WARN the feature `unsized_locals` is incomplete
struct Test([i32]);
fn main() {
let _x: fn(_) -> Test = Test;
} //~^the size for values of type `[i32]` cannot be known at compilation time