mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-28 11:38:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			199 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			199 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| mod Mod {
 | |
|     pub struct FakeVariant<T>(pub T);
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     Mod::FakeVariant::<i32>(0);
 | |
|     Mod::<i32>::FakeVariant(0);
 | |
|     //~^ ERROR type arguments are not allowed on module `Mod` [E0109]
 | |
| }
 | 
