Sign in
qemu
/
meson
/
bcbf0685492c61fbc9acac3e7b808a5036dd2439
/
.
/
test cases
/
rust
/
10 language stds
/
2018.rs
blob: 4009154635e1b03fca4de760406940aa74633e2f [
file
] [
log
] [
blame
]
const
fn
foo
(
x
:
i32
)
->
i32
{
return
x
+
1
;
}
const
VALUE
:
i32
=
foo
(-
1
);
pub
fn
main
()
{
std
::
process
::
exit
(
VALUE
);
}