about summary refs log tree commit diff
path: root/tests/rustdoc/extern/hidden-extern-34025.rs
blob: 2a7b21a874db3d5e37cd7d21162c8377c8445ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// https://github.com/rust-lang/rust/issues/34025
#![crate_name = "foo"]

//@ !has 'foo/sys/index.html'
//@ !has 'foo/sys/sidebar-items.js'
#[doc(hidden)]
pub mod sys {
    extern "C" {
        //@ !has 'foo/sys/fn.foo.html'
        #[doc(hidden)]
        pub fn foo();
    }
}