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