summaryrefslogtreecommitdiffstats
path: root/src/test/ui/functions-closures/closure-bounds-can-capture-chan.rs
blob: ccb2e201d7d12caea97c07564bb62506552a4a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-pass
// pretty-expanded FIXME #23616

use std::sync::mpsc::channel;

fn foo<F:FnOnce()+Send>(blk: F) {
    blk();
}

pub fn main() {
    let (tx, rx) = channel();
    foo(move || {
        tx.send(()).unwrap();
    });
    rx.recv().unwrap();
}