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 Permalink Normal View History

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