Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
rustdoc
/
extern
/
hidden-extern-34025.rs
blob: 2a7b21a874db3d5e37cd7d21162c8377c8445ecb [
file
] [
log
] [
blame
]
// 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
();
}
}