mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
362 B
Rust
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(coroutines)]
|
|
|
|
fn foo(_a: (), _b: &bool) {}
|
|
|
|
fn bar() {
|
|
|| { //~ WARN unused coroutine that must be used
|
|
let b = true;
|
|
foo(yield, &b);
|
|
};
|
|
}
|
|
|
|
fn main() { }
|