mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
131 B
Rust
12 lines
131 B
Rust
//@ run-pass
|
|
|
|
fn foo() -> i32 {
|
|
const {
|
|
let x = 5 + 10;
|
|
x / 3
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(5, foo());
|
|
}
|