rust/tests/ui/generator/yield-in-args-rev.rs
2023-01-11 09:32:08 +00:00

20 lines
362 B
Rust

// 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(generators)]
fn foo(_a: (), _b: &bool) {}
fn bar() {
|| { //~ WARN unused generator that must be used
let b = true;
foo(yield, &b);
};
}
fn main() { }