mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			292 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			292 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
struct Foo;
 | 
						|
 | 
						|
impl Foo {
 | 
						|
    fn bar(self) {}
 | 
						|
 | 
						|
    fn foo() {
 | 
						|
        self.bar(); //~ ERROR E0424
 | 
						|
    }
 | 
						|
 | 
						|
    fn baz(_: i32) {
 | 
						|
        self.bar(); //~ ERROR E0424
 | 
						|
    }
 | 
						|
 | 
						|
    fn qux() {
 | 
						|
        let _ = || self.bar(); //~ ERROR E0424
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
fn main () {
 | 
						|
    let self = "self"; //~ ERROR E0424
 | 
						|
}
 |