mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
aef0f4024a
And suggest adding the `#[coroutine]` to the closure
10 lines
343 B
Rust
10 lines
343 B
Rust
//@ edition:2021
|
|
#![feature(stmt_expr_attributes)]
|
|
#![feature(coroutines)]
|
|
|
|
fn main() {
|
|
let _closure = #[track_caller] || {}; //~ `#[track_caller]` on closures
|
|
let _coroutine = #[coroutine] #[track_caller] || { yield; }; //~ `#[track_caller]` on closures
|
|
let _future = #[track_caller] async {}; //~ `#[track_caller]` on closures
|
|
}
|