rust/tests/ui/unsized-locals/issue-30276.rs
2025-04-08 23:06:31 +03:00

7 lines
156 B
Rust

struct Test([i32]);
fn main() {
let _x: fn(_) -> Test = Test;
//~^ ERROR the size for values of type `[i32]` cannot be known at compilation time
}