Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
cmse-nonsecure
/
cmse-nonsecure-entry
/
gate_test.rs
blob: 6061451b2e9736703ca33cb041f84960b7998d53 [
file
] [
log
] [
blame
] [
edit
]
// gate-test-cmse_nonsecure_entry
#[
no_mangle
]
pub
extern
"C-cmse-nonsecure-entry"
fn
entry_function
(
input
:
u32
)
->
u32
{
//~^ ERROR [E0570]
//~| ERROR [E0658]
input
+
6
}
fn
main
()
{}