Files
rust/tests/rustdoc-json/attrs/link_section_2024.rs
T
2026-04-25 20:06:30 +02:00

11 lines
386 B
Rust

//@ edition: 2024
#![no_std]
// Since the 2024 edition the link_section attribute must use the unsafe qualification.
// However, the unsafe qualification is not shown by rustdoc.
//@ count "$.index[?(@.name=='example')].attrs[*]" 1
//@ is "$.index[?(@.name=='example')].attrs[*].link_section" '"__TEXT,__text"'
#[unsafe(link_section = "__TEXT,__text")]
pub extern "C" fn example() {}