mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
aef0f4024a
And suggest adding the `#[coroutine]` to the closure
19 lines
376 B
Rust
19 lines
376 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() {
|
|
#[coroutine] || { //~ WARN unused coroutine that must be used
|
|
let b = true;
|
|
foo(yield, &b);
|
|
};
|
|
}
|
|
|
|
fn main() { }
|