rust/tests/ui/issues/issue-36260.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
314 B
Rust
Raw Normal View History

// 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:
2019-05-28 18:47:21 +00:00
fn create_fn() -> Box<dyn Fn()> {
let text = String::new();
Box::new(move || { let _ = &text; })
}
fn main() {
let _ = create_fn();
}