mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +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: () = ();
|