rust/tests/rustdoc/attribute-rendering.rs
2025-08-23 11:27:03 +02:00

9 lines
219 B
Rust

#![crate_name = "foo"]
//@ has 'foo/fn.f.html'
//@ has - //*[@'class="code-attribute"]' '#[unsafe(export_name = "f")]'
//@ has - //*[@'class="rust item-decl"]' 'pub fn f()'
#[unsafe(export_name = "\
f")]
pub fn f() {}