summaryrefslogtreecommitdiffstats
path: root/src/test/ui/closures/2229_closure_analysis/run_pass/by_value.rs
blob: f8752fe1cec0407a18b7021cbcaa9087f96fc523 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// edition:2021
// run-pass

// Test that ByValue captures compile successfully especially when the captures are
// dereferenced within the closure.

#[derive(Debug, Default)]
struct SomeLargeType;
struct MuchLargerType([SomeLargeType; 32]);

fn big_box() {
    let s = MuchLargerType(Default::default());
    let b = Box::new(s);
    let t = (b, 10);

    let c = || {
        let p = t.0.0;
        println!("{} {:?}", t.1, p);
    };

    c();
}

fn main() {
    big_box();
}