mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			570 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			570 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ aux-build:alias-reexport.rs
 | |
| //@ aux-build:alias-reexport2.rs
 | |
| 
 | |
| #![crate_name = "foo"]
 | |
| #![feature(lazy_type_alias)]
 | |
| #![allow(incomplete_features)]
 | |
| 
 | |
| extern crate alias_reexport2;
 | |
| 
 | |
| //@ has 'foo/reexport/fn.foo.html'
 | |
| //@ has - '//*[@class="rust item-decl"]' 'pub fn foo() -> Reexported'
 | |
| //@ has 'foo/reexport/fn.foo2.html'
 | |
| //@ has - '//*[@class="rust item-decl"]' 'pub fn foo2() -> Result<Reexported, ()>'
 | |
| //@ has 'foo/reexport/type.Reexported.html'
 | |
| //@ has - '//*[@class="rust item-decl"]' 'pub type Reexported = u8;'
 | |
| #[doc(inline)]
 | |
| pub use alias_reexport2 as reexport;
 | 
