2024-02-22 12:10:29 +00:00
|
|
|
//@ aux-build:extern-links.rs
|
|
|
|
//@ ignore-cross-compile
|
2016-07-09 14:07:37 +01:00
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2021-01-29 00:59:20 +03:00
|
|
|
pub extern crate extern_links;
|
2016-07-09 14:07:37 +01:00
|
|
|
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ !has foo/index.html '//a' 'extern_links'
|
2016-07-09 14:07:37 +01:00
|
|
|
#[doc(no_inline)]
|
|
|
|
pub use extern_links as extern_links2;
|
|
|
|
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ !has foo/index.html '//a' 'Foo'
|
2016-07-09 14:07:37 +01:00
|
|
|
#[doc(no_inline)]
|
|
|
|
pub use extern_links::Foo;
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub mod hidden {
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ !has foo/hidden/extern_links/index.html
|
|
|
|
//@ !has foo/hidden/extern_links/struct.Foo.html
|
2016-07-09 14:07:37 +01:00
|
|
|
pub use extern_links;
|
|
|
|
}
|