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

fn foo() -> impl Sized {
    yield 1; //~ ERROR E0627
}

fn main() {}