]> git.lizzy.rs Git - rust.git/blob - tests/run-make/const_fn_mir/main.rs
Rollup merge of #106709 - khuey:disable_split_dwarf_inlining_by_default, r=davidtwco
[rust.git] / tests / run-make / const_fn_mir / main.rs
1 // emit-mir
2 // check-pass
3
4 const fn foo() -> i32 {
5     5 + 6
6 }
7
8 fn main() {
9     foo();
10 }