mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
8 lines
173 B
Rust
8 lines
173 B
Rust
// This checks that the attribute validation ICE in issue #105594 doesn't
|
|
// recur.
|
|
|
|
fn main() {}
|
|
|
|
#[track_caller] //~ ERROR attribute cannot be used on
|
|
static _A: () = ();
|