Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-17252.rs
blob: 5941e10f8b0681b35fc0ed787381b55be71b9c62 [
file
] [
log
] [
blame
] [
edit
]
const
FOO
:
usize
=
FOO
;
//~ ERROR E0391
fn
main
()
{
let
_x
:
[
u8
;
FOO
];
// caused stack overflow prior to fix
let
_y
:
usize
=
1
+
{
const
BAR
:
usize
=
BAR
;
//~^ ERROR: cycle
let
_z
:
[
u8
;
BAR
];
// caused stack overflow prior to fix
1
};
}