]> git.proxmox.com Git - rustc.git/blob - src/test/run-make/const_fn_mir/main.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / 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 }