rust/tests/ui-toml/too_large_for_stack/boxed_local.rs

6 lines
126 B
Rust
Raw Normal View History

2023-09-24 07:56:40 -05:00
fn f(x: Box<[u8; 500]>) {}
//~^ ERROR: local variable doesn't need to be boxed here
fn f2(x: Box<[u8; 501]>) {}
fn main() {}