]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-34025.rs
Merge commit '533f0fc81ab9ba097779fcd27c8f9ea12261fef5' into psimd
[rust.git] / src / test / rustdoc / issue-34025.rs
1 #![crate_name = "foo"]
2
3 // @!has 'foo/sys/index.html'
4 // @!has 'foo/sys/sidebar-items.js'
5 #[doc(hidden)]
6 pub mod sys {
7     extern "C" {
8         // @!has 'foo/sys/fn.foo.html'
9         #[doc(hidden)]
10         pub fn foo();
11     }
12 }