Sign in
fuchsia
/
third_party
/
rust
/
359bfa901b9d8eddbed7b88b6716dbb77b7bfb95
/
.
/
tests
/
ui
/
coroutine
/
async-coroutine-issue-67158.rs
blob: 14905e6b8bf729e77ab0964e2a41aa97b9d57895 [
file
] [
log
] [
blame
]
#![
feature
(
coroutines
)]
//@ edition:2018
// Regression test for #67158.
fn
main
()
{
async
{
yield print
!(
":C"
)
};
//~ ERROR `async` coroutines are not yet supported
}