mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +00:00
10 lines
206 B
Rust
10 lines
206 B
Rust
// edition:2021
|
|
|
|
#![feature(async_closure, stmt_expr_attributes)]
|
|
|
|
fn main() {
|
|
let _ = #[track_caller] async || {
|
|
//~^ ERROR `#[track_caller]` on closures is currently unstable [E0658]
|
|
};
|
|
}
|