Sign in
rust
/
rust
/
ef4cff2ea33e070b7fa7253fdb4a88e3f4086a15
/
.
/
tests
/
ui
/
consts
/
recursive-block.rs
blob: a3dcaa42836691d9ad770724d785a268633fc569 [
file
]
const
fn
foo
<
T
>()
{
const
{
foo
::<&
T
>()
}
//~ ERROR: queries overflow the depth limit!
}
fn
main
()
{
const
X
:
()
=
foo
::<
i32
>();
}