mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			462 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			462 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| trait A {
 | |
|     fn foo(*mut self); //~ ERROR cannot pass `self` by raw pointer
 | |
|     fn baz(*const self); //~ ERROR cannot pass `self` by raw pointer
 | |
|     fn bar(*self); //~ ERROR cannot pass `self` by raw pointer
 | |
| }
 | |
| 
 | |
| struct X;
 | |
| impl A for X {
 | |
|     fn foo(*mut self) { } //~ ERROR cannot pass `self` by raw pointer
 | |
|     fn baz(*const self) { } //~ ERROR cannot pass `self` by raw pointer
 | |
|     fn bar(*self) { } //~ ERROR cannot pass `self` by raw pointer
 | |
| }
 | |
| 
 | |
| fn main() { }
 | 
