11 lines
90 B
Rust
11 lines
90 B
Rust
|
// emit-mir
|
||
|
//@ check-pass
|
||
|
|
||
|
const fn foo() -> i32 {
|
||
|
5 + 6
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
foo();
|
||
|
}
|