-
Notifications
You must be signed in to change notification settings - Fork 64
SIGSEGV #103
New issue
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
Comments
@maciejhirsz you should try and use american fuzzy lop, it works wonders, would you accept a pull request that sets that up? (Although it probably wouldn't have found this :P) |
Would definitely accept a PR. Even if it can't find this particular issue, there had been others issues in the past. |
I wonder what is changing on the compiler side to affect this. On my computer: while cargo +1.12.0 test --test value; do :; done # does not fail
while cargo +1.13.0 test --test value; do :; done # does not fail
while cargo +1.14.0 test --test value; do :; done # fails almost immediately
while cargo +beta test --test value; do :; done # fails almost immediately
while cargo +nightly test --test value; do :; done # does not fail |
Interesting thing is that I'm unable to reproduce it on OSX, but I can reproduce it on a Linux machine. |
Identified the problem. I was playing with fire and got humbled by the compiler once I tried rewriting I wrongly attributed the borrow lifetimes to be call scope instead of bound to the Lines 100 to 112 in 9eabb90
Fix and new release should follow shortly. |
Need to find a way to reproduce, as it apparently happens on stable Rust: rust-lang/rust#38687
edit: running
cargo test --test value
reproduces the issueThe text was updated successfully, but these errors were encountered: