2017-05-22 01:05:16 +00:00
|
|
|
//@ aux-build:renamed-via-module.rs
|
|
|
|
//@ build-aux-docs
|
|
|
|
//@ ignore-cross-compile
|
|
|
|
|
|
|
|
#![crate_name = "bar"]
|
|
|
|
|
|
|
|
extern crate foo;
|
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has foo/iter/index.html
|
|
|
|
//@ has - '//a/[@href="struct.DeprecatedStepBy.html"]' "DeprecatedStepBy"
|
|
|
|
//@ has - '//a/[@href="struct.StepBy.html"]' "StepBy"
|
|
|
|
//@ has foo/iter/struct.DeprecatedStepBy.html
|
2024-09-03 02:42:28 +00:00
|
|
|
//@ has - '//h1' "Struct DeprecatedStepBy"
|
2024-09-11 05:03:54 +00:00
|
|
|
//@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo::iter'
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has foo/iter/struct.StepBy.html
|
2024-09-03 02:42:28 +00:00
|
|
|
//@ has - '//h1' "Struct StepBy"
|
2024-09-11 05:03:54 +00:00
|
|
|
//@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo::iter'
|
2017-05-22 01:05:16 +00:00
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has bar/iter/index.html
|
|
|
|
//@ has - '//a/[@href="struct.DeprecatedStepBy.html"]' "DeprecatedStepBy"
|
|
|
|
//@ has - '//a/[@href="struct.StepBy.html"]' "StepBy"
|
|
|
|
//@ has bar/iter/struct.DeprecatedStepBy.html
|
2024-09-03 02:42:28 +00:00
|
|
|
//@ has - '//h1' "Struct DeprecatedStepBy"
|
2024-09-11 05:03:54 +00:00
|
|
|
//@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'bar::iter'
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has bar/iter/struct.StepBy.html
|
2024-09-03 02:42:28 +00:00
|
|
|
//@ has - '//h1' "Struct StepBy"
|
2024-09-11 05:03:54 +00:00
|
|
|
//@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'bar::iter'
|
2017-05-22 01:05:16 +00:00
|
|
|
pub use foo::iter;
|