mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-16 00:15:53 +00:00
10 lines
211 B
Rust
10 lines
211 B
Rust
// edition:2021
|
|
|
|
#![feature(closure_track_caller, stmt_expr_attributes)]
|
|
|
|
fn main() {
|
|
let _ = #[track_caller] async {
|
|
//~^ ERROR attribute should be applied to a function definition [E0739]
|
|
};
|
|
}
|