mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			218 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			218 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Test diagnostics for the removed struct inheritance feature.
 | |
| 
 | |
| virtual struct SuperStruct {
 | |
| //~^ ERROR expected item, found reserved keyword `virtual`
 | |
|     f1: isize,
 | |
| }
 | |
| 
 | |
| struct Struct : SuperStruct;
 | |
| 
 | |
| pub fn main() {}
 | 
