about summary refs log tree commit diff
path: root/tests/ui/attributes/issue-105594-invalid-attr-validation.rs
blob: cb196471fd75ecf5a78999ba4750c2f6c8b0fe97 (plain)
1
2
3
4
5
6
7
// 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: () = ();