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