Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
recursive.rs
blob: 5d736e31bcb46cece80bba4a648ab40f97b44bc0 [
file
] [
log
] [
blame
] [
edit
]
#![
allow
(
unused
)]
const
fn
f
<
T
>(
x
:
T
)
{
//~ WARN function cannot return without recursing
f
(
x
);
//~^ ERROR evaluation of constant value failed
}
const
X
:
()
=
f
(
1
);
fn
main
()
{}