blob: 81ccf2a0e5cc3101565d2073b737b47e55c21968 [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();
}
}