We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fn main() { let _x = @{a: @10, b: ~true}; }
When run with RUST_CC_ZEAL=1, this program crashes. The crash looks like it's due to too much recursion in
shape::data<cc::irc, shape::ptr>::walk_uniq().
It's also suspicious that the cycle collector hits a stack guard rather than growing the stack, btw.
The text was updated successfully, but these errors were encountered:
I got a different error trying to repro this:
Assertion failed: (box->ref_count >= 1), function box_body_td, file ./src/rt/rust_shape.h, line 704
which is at least better than a crash :-)
Sorry, something went wrong.
Hmm, for me I do not get a crash at all. Perhaps optimizations have to be enabled, though...
add test for issue #1466 that runs with CC ZEAL enabled.
f099359
Fixes #1466. (Unable to reproduce)
Fix all remaining clippy lints (rust-lang#1466)
43f22a8
nikomatsakis
No branches or pull requests
When run with RUST_CC_ZEAL=1, this program crashes. The crash looks like it's due to too much recursion in
It's also suspicious that the cycle collector hits a stack guard rather than growing the stack, btw.
The text was updated successfully, but these errors were encountered: