blob: b22c32ccd92db1172404dbdf37ec7afe30a2363d [file] [log] [blame]
// run-pass
#![allow(dead_code)]
// Test that a borrow that occurs after a yield in the same
// argument list is not treated as live across the yield by
// type-checking.
#![feature(coroutines)]
fn foo(_a: (), _b: &bool) {}
fn bar() {
|| { //~ WARN unused coroutine that must be used
let b = true;
foo(yield, &b);
};
}
fn main() { }