mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 15:05:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			152 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			152 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
struct Foo;
 | 
						|
 | 
						|
impl Foo {
 | 
						|
    fn orange(&self) {}
 | 
						|
    fn orange(&self) {}
 | 
						|
    //~^ ERROR duplicate definitions with name `orange` [E0592]
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |