Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
consts
/
return-in-const-fn.rs
blob: 077a33c081ba8816e04d8c96ee9c4e6797680e32 [
file
] [
log
] [
blame
]
// run-pass
// https://github.com/rust-lang/rust/issues/43754
const
fn
foo
(
x
:
usize
)
->
usize
{
return
x
;
}
fn
main
()
{
[
0
;
foo
(
2
)];
}