rust/tests/ui/coroutine/yield-in-args.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
158 B
Rust
Raw Normal View History

2023-10-20 05:46:28 +08:00
#![feature(coroutines)]
2017-07-15 06:01:20 +08:00
fn foo(_b: &bool, _a: ()) {}
fn main() {
#[coroutine]
2017-07-16 03:28:42 +08:00
|| {
let b = true;
foo(&b, yield); //~ ERROR
};
2017-07-15 06:01:20 +08:00
}