rust/tests/ui/stable-mir-print/basic_function.rs

26 lines
440 B
Rust
Raw Normal View History

//@ 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
2023-11-27 18:40:00 +03:00
2024-03-20 15:55:35 -07:00
fn foo(i: i32) -> i32 {
2023-11-27 18:40:00 +03:00
i + 1
}
fn bar(vec: &mut Vec<i32>) -> Vec<i32> {
let mut new_vec = vec.clone();
new_vec.push(1);
new_vec
}
2024-03-20 15:55:35 -07:00
pub fn demux(input: u8) -> u8 {
match input {
0 => 10,
1 => 6,
2 => 8,
_ => 0,
}
}
fn main() {}