2022-12-12 06:08:59 -06:00
|
|
|
// This checks that the attribute validation ICE in issue #105594 doesn't
|
|
|
|
// recur.
|
|
|
|
//
|
2023-03-08 03:12:27 -06:00
|
|
|
// ignore-thumbv8m.base-none-eabi
|
2022-12-12 06:08:59 -06:00
|
|
|
#![feature(cmse_nonsecure_entry)]
|
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
#[track_caller] //~ ERROR attribute should be applied to a function
|
|
|
|
static _A: () = ();
|
|
|
|
|
|
|
|
#[cmse_nonsecure_entry] //~ ERROR attribute should be applied to a function
|
|
|
|
static _B: () = (); //~| ERROR #[cmse_nonsecure_entry]` is only valid for targets
|