mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +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]
 | 
						|
}
 |