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