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