mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			154 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			154 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
trait Trait {
 | 
						|
    fn outer(&self) {
 | 
						|
        fn inner(_: &Self) {
 | 
						|
            //~^ ERROR can't use `Self` from outer item
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
fn main() { }
 |