1
Fork 0
rust/tests/ui/coroutine/const_gen_fn.rs
2024-11-22 11:12:15 -08:00

11 lines
218 B
Rust

//@ edition:2024
#![feature(gen_blocks)]
const gen fn a() {}
//~^ ERROR functions cannot be both `const` and `gen`
const async gen fn b() {}
//~^ ERROR functions cannot be both `const` and `async gen`
fn main() {}