Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-fn-const-eval.rs
blob: 25abca0fb43d23c23747df8e63b81879c17c71b2 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
const
fn
add
(
x
:
usize
,
y
:
usize
)
->
usize
{
x
+
y
}
const
ARR
:
[
i32
;
add
(
1
,
2
)]
=
[
5
,
6
,
7
];
pub
fn
main
()
{}