about summary refs log tree commit diff
path: root/tests/ui/coroutine/issue-91477.rs
blob: c215fd7948f33a4b7c8addd148eaed1785378ad8 (plain)
1
2
3
4
5
6
7
8
#![feature(coroutines)]

fn foo() -> impl Sized {
    yield 1; //~ ERROR E0627
    //~^ ERROR: `yield` can only be used in
}

fn main() {}