mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
8 lines
187 B
Rust
8 lines
187 B
Rust
// This checks that the attribute validation ICE in issue #105594 doesn't
|
|
// recur.
|
|
|
|
fn main() {}
|
|
|
|
#[track_caller] //~ ERROR attribute should be applied to a function
|
|
static _A: () = ();
|