This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-06-06 12:18:33 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
7b8644e5cf
rust
/
tests
/
ui
/
consts
/
issue-36163.rs
8 lines
89 B
Rust
Raw
Normal View
History
Unescape
Escape
Remove "static item recursion checking" in favor of relying on cycle checks in the query engine
2018-02-03 20:15:00 +00:00
const
A
:
isize
=
Foo
::
B
as
isize
;
fix stack overflow by enum and cont issue #36163, some paths were skipped while checking for recursion.
2016-09-09 21:11:31 +00:00
enum
Foo
{
Remove "static item recursion checking" in favor of relying on cycle checks in the query engine
2018-02-03 20:15:00 +00:00
B
=
A
,
//~ ERROR E0391
fix stack overflow by enum and cont issue #36163, some paths were skipped while checking for recursion.
2016-09-09 21:11:31 +00:00
}
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink