rust/tests/run-make/const_fn_mir/main.rs

11 lines
90 B
Rust

// emit-mir
//@ check-pass
const fn foo() -> i32 {
5 + 6
}
fn main() {
foo();
}