mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 10:07:29 +00:00
13 lines
131 B
Rust
13 lines
131 B
Rust
//@ run-pass
|
|
|
|
fn foo() -> i32 {
|
|
const {
|
|
let x = 5 + 10;
|
|
x / 3
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(5, foo());
|
|
}
|