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