Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
inline-const
/
const-expr-basic.rs
blob: dac46fe25ecfc84e266480dc2c96fd922915b6b7 [
file
]
// run-pass
#![
feature
(
inline_const
)]
fn
foo
()
->
i32
{
const
{
let
x
=
5
+
10
;
x
/
3
}
}
fn
main
()
{
assert_eq
!(
5
,
foo
());
}