summaryrefslogtreecommitdiffstats
path: root/tests/ui/coroutine/gen_block_is_no_future.rs
blob: 9476651973873707488bbc8569d3a2f5d55f3066 (plain)
1
2
3
4
5
6
7
8
//compile-flags: --edition 2024 -Zunstable-options
#![feature(gen_blocks)]

fn foo() -> impl std::future::Future { //~ ERROR is not a future
    gen { yield 42 }
}

fn main() {}