mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-14 07:53:24 +00:00
9 lines
139 B
Rust
9 lines
139 B
Rust
#![feature(coroutines)]
|
|
|
|
fn foo() -> impl Sized {
|
|
yield 1; //~ ERROR E0627
|
|
//~^ ERROR: `yield` can only be used in
|
|
}
|
|
|
|
fn main() {}
|