rust/tests/crashes/130104.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
167 B
Rust
Raw Normal View History

2024-09-15 14:18:41 -05:00
//@ known-bug: rust-lang/rust#130104
fn main() {
let non_secure_function =
core::mem::transmute::<fn() -> _, extern "C-cmse-nonsecure-call" fn() -> _>;
}