Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
use std::sync::mpsc::channel;
use std::thread;
fn main() {
let (tx, rx) = channel();
let _t = thread::spawn(move|| -> () {
loop {
let tx = tx;
//~^ ERROR: use of moved value: `tx`
tx.send(1);
}
});