mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
10 lines
211 B
Rust
10 lines
211 B
Rust
//@ known-bug: #132430
|
|
|
|
//@compile-flags: --edition=2018 --crate-type=lib
|
|
#![feature(cmse_nonsecure_entry)]
|
|
struct Test;
|
|
|
|
impl Test {
|
|
pub async unsafe extern "C-cmse-nonsecure-entry" fn test(val: &str) {}
|
|
}
|