2023-10-19 21:46:28 +00:00
|
|
|
#![feature(coroutines)]
|
2021-02-17 20:44:00 -08:00
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
yield || for i in 0 { }
|
2023-10-19 21:46:28 +00:00
|
|
|
//~^ ERROR yield expression outside of coroutine literal
|
2021-02-17 20:44:00 -08:00
|
|
|
//~| ERROR `{integer}` is not an iterator
|
2024-04-11 13:15:34 +00:00
|
|
|
//~| ERROR `yield` can only be used in
|
2021-02-17 20:44:00 -08:00
|
|
|
}
|