mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
314 B
Rust
14 lines
314 B
Rust
// run-pass
|
|
// Make sure this compiles without getting a linker error because of missing
|
|
// drop-glue because the collector missed adding drop-glue for the closure:
|
|
|
|
fn create_fn() -> Box<dyn Fn()> {
|
|
let text = String::new();
|
|
|
|
Box::new(move || { let _ = &text; })
|
|
}
|
|
|
|
fn main() {
|
|
let _ = create_fn();
|
|
}
|