Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
consts
/
const-call.rs
blob: 851b66f76238c11983c594af00e218946eaef36e [
file
]
fn
f
(
x
:
usize
)
->
usize
{
x
}
fn
main
()
{
let
_
=
[
0
;
f
(
2
)];
//~^ ERROR cannot call non-const function
}