blob: 8ec22033a3df89e6c924fa13c45e19d65e58bde1 [file] [log] [blame]
// gate-test-cmse_nonsecure_entry
#[no_mangle]
pub extern "cmse-nonsecure-entry" fn entry_function(input: u32) -> u32 {
//~^ ERROR: is not a supported ABI for the current target [E0570]
//~| ERROR: ABI is experimental and subject to change [E0658]
input + 6
}
fn main() {}