summary refs log tree commit diff
path: root/src/test/ui/generator/yield-in-const.rs
blob: f6f11b9cb13dd639ae467a74a7df009dc0d2c459 (plain)
1
2
3
4
5
6
#![feature(generators)]

const A: u8 = { yield 3u8; 3u8};
//~^ ERROR yield statement outside

fn main() {}