Sign in
◑
Theme
rust
/
rust
/
21b4ef650f016cc2ddcfa29c9ad2bd8f2d4e359d
/
.
/
tests
/
ui
/
inline-const
/
const-expr-basic.rs
blob: 7f769d2b5c3376882d7d9aee07cb33a83e6b9644 [
file
]
//@ run-pass
fn
foo
()
->
i32
{
const
{
let
x
=
5
+
10
;
x
/
3
}
}
fn
main
()
{
assert_eq
!(
5
,
foo
());
}