rust/tests/run-make/const_fn_mir/main.rs
2023-01-11 09:32:08 +00:00

11 lines
89 B
Rust

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