Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![feature(coroutines)]
fn main() {
yield || for i in 0 { }
//~^ ERROR yield expression outside of coroutine literal
//~| ERROR `{integer}` is not an iterator
}