mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			156 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			156 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // error-pattern:nonexistent
 | |
| class cat : nonexistent {
 | |
|   let meows: usize;
 | |
|   new(in_x : usize) { self.meows = in_x; }
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|   let nyan = cat(0);
 | |
| }
 | 
