rust/tests/ui/attributes/unsafe/unsafe-attributes.rs

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

8 lines
92 B
Rust
Raw Normal View History

2024-04-28 20:43:07 +00:00
//@ build-pass
#![feature(unsafe_attributes)]
#[unsafe(no_mangle)]
fn a() {}
fn main() {}