]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-34025.rs
Rollup merge of #107580 - lenko-d:default_value_for_a_lifetime_generic_parameter_prod...
[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 }