summaryrefslogtreecommitdiffstats
path: root/tests/ui/cmse-nonsecure/cmse-nonsecure-entry/wrong-abi.rs
blob: 6320d296373c09236a8328d2069c4639fae4cf98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// compile-flags: --target thumbv8m.main-none-eabi --crate-type lib
// needs-llvm-components: arm
#![feature(cmse_nonsecure_entry, no_core, lang_items)]
#![no_core]
#[lang="sized"]
trait Sized { }

#[no_mangle]
#[cmse_nonsecure_entry]
//~^ ERROR `#[cmse_nonsecure_entry]` requires C ABI [E0776]
pub fn entry_function(_: u32, _: u32, _: u32, d: u32) -> u32 {
    d
}