]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-34025.rs
Auto merge of #107778 - weihanglo:update-cargo, r=weihanglo
[rust.git] / tests / 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 }