Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
coroutine
/
issue-91477.rs
blob: c215fd7948f33a4b7c8addd148eaed1785378ad8 [
file
] [
log
] [
blame
]
#![
feature
(
coroutines
)]
fn
foo
()
->
impl
Sized
{
yield
1
;
//~ ERROR E0627
//~^ ERROR: `yield` can only be used in
}
fn
main
()
{}