mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-06 04:44:53 +00:00
7 lines
170 B
Rust
7 lines
170 B
Rust
|
#![feature(generators)]
|
||
|
// edition:2018
|
||
|
// Regression test for #67158.
|
||
|
fn main() {
|
||
|
async { yield print!(":C") }; //~ ERROR `async` generators are not yet supported
|
||
|
}
|