mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
8 lines
227 B
Rust
8 lines
227 B
Rust
//@ edition: 2021
|
|
#![no_std]
|
|
|
|
//@ count "$.index[?(@.name=='example')].attrs[*]" 1
|
|
//@ is "$.index[?(@.name=='example')].attrs[*].link_section" '"__TEXT,__text"'
|
|
#[link_section = "__TEXT,__text"]
|
|
pub extern "C" fn example() {}
|