mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			1020 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1020 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ aux-build:renamed-via-module.rs
 | |
| //@ build-aux-docs
 | |
| //@ ignore-cross-compile
 | |
| 
 | |
| #![crate_name = "bar"]
 | |
| 
 | |
| extern crate foo;
 | |
| 
 | |
| //@ 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
 | |
| //@ has - '//h1' "Struct DeprecatedStepBy"
 | |
| //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo::iter'
 | |
| //@ has foo/iter/struct.StepBy.html
 | |
| //@ has - '//h1' "Struct StepBy"
 | |
| //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'foo::iter'
 | |
| 
 | |
| //@ 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
 | |
| //@ has - '//h1' "Struct DeprecatedStepBy"
 | |
| //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'bar::iter'
 | |
| //@ has bar/iter/struct.StepBy.html
 | |
| //@ has - '//h1' "Struct StepBy"
 | |
| //@ matches - '//*[@class="rustdoc-breadcrumbs"]' 'bar::iter'
 | |
| pub use foo::iter;
 | 
