rust/tests/ui-toml/too_large_for_stack/boxed_local.rs
2023-09-25 11:28:58 +02:00

5 lines
126 B
Rust

fn f(x: Box<[u8; 500]>) {}
//~^ ERROR: local variable doesn't need to be boxed here
fn f2(x: Box<[u8; 501]>) {}
fn main() {}