mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			157 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			157 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);
 | |
| }
 | 
