2023-10-19 21:46:28 +00:00
|
|
|
#![feature(coroutines)]
|
2020-02-15 01:49:16 +00:00
|
|
|
//@ edition:2018
|
|
|
|
// Regression test for #67158.
|
|
|
|
fn main() {
|
2023-10-19 21:46:28 +00:00
|
|
|
async { yield print!(":C") }; //~ ERROR `async` coroutines are not yet supported
|
2020-02-15 01:49:16 +00:00
|
|
|
}
|