Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
recursion
/
issue-23302-3.rs
blob: da75f330798865ff2190f84c6009ff253716ee8e [
file
] [
log
] [
blame
] [
edit
]
const
A
:
i32
=
B
;
//~ ERROR cycle detected
const
B
:
i32
=
A
;
fn
main
()
{
}