This website requires JavaScript.
Explore
Help
Register
Sign In
rust-lang
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Actions
1
Packages
Projects
Releases
Wiki
Activity
Files
b3827e4f3728b77bd3e60587487ebfc3cc8d901b
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
(
)
{
}
Reference in New Issue
Copy Permalink