mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			324 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			324 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-fail
 | |
| //@ error-pattern:explicit panic
 | |
| //@ needs-subprocess
 | |
| 
 | |
| fn build1() -> Vec<isize> {
 | |
|     vec![0, 0, 0, 0, 0, 0, 0]
 | |
| }
 | |
| 
 | |
| fn build2() -> Vec<isize> {
 | |
|     panic!();
 | |
| }
 | |
| 
 | |
| struct Blk {
 | |
|     node: Vec<isize>,
 | |
|     span: Vec<isize>,
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     let _blk = Blk {
 | |
|         node: build1(),
 | |
|         span: build2(),
 | |
|     };
 | |
| }
 | 
