2020-10-11 20:27:17 -04:00
|
|
|
// aux-build:reexport-check.rs
|
2020-09-29 17:04:40 +02:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2020-10-11 20:27:17 -04:00
|
|
|
extern crate reexport_check;
|
|
|
|
|
2020-09-29 17:04:40 +02:00
|
|
|
// @!has 'foo/index.html' '//code' 'pub use self::i32;'
|
2021-06-18 00:33:42 +02:00
|
|
|
// @has 'foo/index.html' '//div[@class="item-left deprecated module-item"]' 'i32'
|
2020-09-29 17:04:40 +02:00
|
|
|
// @has 'foo/i32/index.html'
|
2020-10-24 19:21:40 -04:00
|
|
|
#[allow(deprecated, deprecated_in_future)]
|
2020-09-29 17:04:40 +02:00
|
|
|
pub use std::i32;
|
|
|
|
// @!has 'foo/index.html' '//code' 'pub use self::string::String;'
|
2021-06-18 00:33:42 +02:00
|
|
|
// @has 'foo/index.html' '//div[@class="item-left module-item"]' 'String'
|
2020-09-29 17:04:40 +02:00
|
|
|
pub use std::string::String;
|
2020-10-11 20:27:17 -04:00
|
|
|
|
2021-06-18 00:33:42 +02:00
|
|
|
// @has 'foo/index.html' '//div[@class="item-right docblock-short"]' 'Docs in original'
|
2020-10-11 20:27:17 -04:00
|
|
|
// this is a no-op, but shows what happens if there's an attribute that isn't a doc-comment
|
|
|
|
#[doc(inline)]
|
|
|
|
pub use reexport_check::S;
|