mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			440 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			440 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ compile-flags: -Z unpretty=stable-mir -Z mir-opt-level=3
 | 
						|
//@ check-pass
 | 
						|
//@ only-x86_64
 | 
						|
//@ needs-unwind unwind edges are different with panic=abort
 | 
						|
 | 
						|
fn foo(i: i32) -> i32 {
 | 
						|
    i + 1
 | 
						|
}
 | 
						|
 | 
						|
fn bar(vec: &mut Vec<i32>) -> Vec<i32> {
 | 
						|
    let mut new_vec = vec.clone();
 | 
						|
    new_vec.push(1);
 | 
						|
    new_vec
 | 
						|
}
 | 
						|
 | 
						|
pub fn demux(input: u8) -> u8 {
 | 
						|
    match input {
 | 
						|
        0 => 10,
 | 
						|
        1 => 6,
 | 
						|
        2 => 8,
 | 
						|
        _ => 0,
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |