about summary refs log tree commit diff
path: root/tests/rustdoc/attributes-re-export.rs
blob: 458826ea8a3563d5376f14c80c1e2d57bc094a69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Tests that attributes are correctly copied onto a re-exported item.
//@ edition:2021
#![crate_name = "re_export"]

//@ has 're_export/fn.thingy2.html' '//pre[@class="rust item-decl"]' '#[no_mangle]'
pub use thingymod::thingy as thingy2;

mod thingymod {
    #[no_mangle]
    pub fn thingy() {

    }
}