mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			180 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			180 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-fail
 | |
| //@ error-pattern:index out of bounds
 | |
| //@ needs-subprocess
 | |
| 
 | |
| use std::mem::size_of;
 | |
| 
 | |
| fn main() {
 | |
|     let xs = [1, 2, 3];
 | |
|     xs[usize::MAX / size_of::<isize>() + 1];
 | |
| }
 | 
