mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			205 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			205 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![deny(rustdoc::broken_intra_doc_links)]
 | |
| #![allow(nonstandard_style)]
 | |
| 
 | |
| /// [`u32::MAX`]
 | |
| //~^ ERROR both an associated constant and a primitive type
 | |
| pub mod u32 {
 | |
|     pub use std::primitive::u32 as MAX;
 | |
| }
 | 
