mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			536 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			536 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Regression test for <https://github.com/rust-lang/rust/issues/108281>.
 | |
| // It ensures that the attributes on the first reexport are not duplicated.
 | |
| 
 | |
| #![crate_name = "foo"]
 | |
| 
 | |
| //@ has 'foo/index.html'
 | |
| 
 | |
| #[doc(hidden)]
 | |
| pub fn bar() {}
 | |
| mod sub {
 | |
|     pub fn public() {}
 | |
| }
 | |
| 
 | |
| //@ matches - '//dd' '^Displayed$'
 | |
| /// Displayed
 | |
| #[doc(inline)]
 | |
| pub use crate::bar as Bar;
 | |
| //@ matches - '//dd' '^Hello\sDisplayed$'
 | |
| #[doc(inline)]
 | |
| /// Hello
 | |
| pub use crate::Bar as Bar2;
 | |
| 
 | |
| //@ matches - '//dd' '^Public$'
 | |
| /// Public
 | |
| pub use crate::sub::public as Public;
 | 
