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;'
|
|
|
|
// @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;'
|
2023-02-07 19:00:18 -07:00
|
|
|
// @has 'foo/index.html' '//div[@class="item-name"]' 'String'
|
2020-09-29 17:04:40 +02:00
|
|
|
pub use std::string::String;
|
2020-10-11 20:27:17 -04:00
|
|
|
|
2023-01-31 11:27:09 -07:00
|
|
|
// i32 is deprecated, String is not
|
|
|
|
// @count 'foo/index.html' '//span[@class="stab deprecated"]' 1
|
|
|
|
|
2023-02-07 19:00:18 -07:00
|
|
|
// @has 'foo/index.html' '//div[@class="desc 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;
|