This website requires JavaScript.
Explore
Help
Sign in
bjoernager
/
rust
Watch
1
Fork
You've already forked rust
0
Code
Activity
42ee400b0f
rust
/
tests
/
ui
/
recursion
/
issue-23302-3.rs
6 lines
77 B
Rust
Raw
Normal View
History
Unescape
Escape
Update tests
2018-04-15 23:21:00 +02:00
const
A
:
i32
=
B
;
//~ ERROR cycle detected
rustc: Don't allow recursive constants
2012-04-04 16:12:57 -07:00
Update tests
2018-04-15 23:21:00 +02:00
const
B
:
i32
=
A
;
Remove "static item recursion checking" in favor of relying on cycle checks in the query engine
2018-02-03 21:15:00 +01:00
fn
main
(
)
{
}
Copy permalink