Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
execute
/
torture
/
const_block1.rs
blob: 544c0eeda52797daa3267d28471f44ce7fa01d0a [
file
]
#![
feature
(
no_core
)]
#![
no_core
]
const
X
:
i32
=
const
{
let
a
=
15
;
let
b
=
14
;
a
+
b
};
fn
main
()
->
i32
{
X
-
29
}