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