rust/tests/ui/generator/async-generator-issue-67158.rs

7 lines
170 B
Rust
Raw Normal View History

#![feature(generators)]
// edition:2018
// Regression test for #67158.
fn main() {
async { yield print!(":C") }; //~ ERROR `async` generators are not yet supported
}