rust/tests/ui/unsized-locals/issue-30276-feature-flagged.rs
2025-06-13 01:16:36 +02: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
}