rust/tests/ui/coroutine/const_gen_fn.rs
2024-09-11 18:39:06 -04:00

13 lines
256 B
Rust

//@ edition:2024
//@ compile-flags: -Zunstable-options
#![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() {}