summaryrefslogtreecommitdiff
path: root/tests/ui/issues/issue-16560.rs
blob: d9a7aa9101d3f396bc6db96f93d94f97f22f6e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//@ run-pass
#![allow(unused_variables)]
//@ needs-threads

use std::thread;
use std::mem;

fn main() {
    let y = 0u8;
    let closure = move |x: u8| y + x;

    // Check that both closures are capturing by value
    assert_eq!(1, mem::size_of_val(&closure));

    thread::spawn(move|| {
        let ok = closure;
    }).join().ok().unwrap();
}