mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 13:46:03 +00:00
7 lines
156 B
Rust
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
|
|
}
|