Files
rust/tests/ui/attributes/unsafe/unsafe-attributes.rs
carbotaniuman 48851d9adb Add tests
2024-06-06 20:26:28 -05:00

8 lines
92 B
Rust

//@ build-pass
#![feature(unsafe_attributes)]
#[unsafe(no_mangle)]
fn a() {}
fn main() {}