rust/tests/rustdoc/reexport/auxiliary/reexports-attrs.rs
Jonathan Brouwer 9f16db6611
Regression test
2025-07-17 08:03:17 +02:00

15 lines
204 B
Rust

#[unsafe(no_mangle)]
pub fn f0() {}
#[unsafe(link_section = ".here")]
pub fn f1() {}
#[unsafe(export_name = "f2export")]
pub fn f2() {}
#[repr(u8)]
pub enum T0 { V1 }
#[non_exhaustive]
pub enum T1 {}