12 lines
272 B
Rust
12 lines
272 B
Rust
|
|
// edition: 2024
|
||
|
|
// compile-flags: -Zunstable-options
|
||
|
|
#![feature(gen_blocks)]
|
||
|
|
|
||
|
|
// async generators are not yet supported, so this test makes sure they make some kind of reasonable
|
||
|
|
// error.
|
||
|
|
|
||
|
|
async gen fn foo() {}
|
||
|
|
//~^ `async gen` functions are not supported
|
||
|
|
|
||
|
|
fn main() {}
|