Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
compile-fail
/
const-recursive.rs
blob: e242948b322e90f5d5c60421609f6864a8beb5ea [
file
] [
log
] [
blame
]
// error-pattern: recursive constant
const
a
:
int
=
b
;
const
b
:
int
=
a
;
fn
main
()
{
}