mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
15 lines
157 B
Rust
15 lines
157 B
Rust
// run-pass
|
|
|
|
#![feature(inline_const)]
|
|
|
|
fn foo() -> i32 {
|
|
const {
|
|
let x = 5 + 10;
|
|
x / 3
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(5, foo());
|
|
}
|