about summary refs log tree commit diff
path: root/tests/ui/issues/issue-36260.rs
blob: 265b0d2f8021730d6e65355bc25ddedc8f8a6961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ 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();
}