Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![feature(coroutines)]
fn foo() -> impl Sized {
yield 1; //~ ERROR E0627
//~^ ERROR: `yield` can only be used in
}
fn main() {}