rust/tests/ui/inline-const/const-expr-basic.rs

13 lines
131 B
Rust
Raw Normal View History

//@ run-pass
2020-09-21 20:55:58 +00:00
fn foo() -> i32 {
const {
let x = 5 + 10;
x / 3
}
}
2020-10-06 20:53:12 +00:00
fn main() {
assert_eq!(5, foo());
}