]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-34025.rs
Rollup merge of #71829 - kper:issue71136, r=matthewjasper
[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 }