-
Notifications
You must be signed in to change notification settings - Fork 101
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
Panic due to typecheck failure on percent-encoding crate #675
Labels
[C] Bug
This is a bug. Something isn't working.
Comments
The following snippet is sufficient to trigger the same panic: fn main() {
let s = "foo";
let a: *const [u8] = s.as_bytes();
let arr: [u8; 3] = [1, 2, 3];
let b = &arr;
assert!(a == &*b as *const [u8]);
} |
Still crashes with the same message with |
celinval
added a commit
to celinval/kani-dev
that referenced
this issue
Apr 20, 2022
celinval
added a commit
to celinval/kani-dev
that referenced
this issue
Apr 20, 2022
The verification still fails due to missing std function.
celinval
added a commit
that referenced
this issue
Apr 22, 2022
We no longer crash for this crate but we are unable to verify code that includes comparison of fat pointers. We will handle this on the original issue: #327. I'm closing this one since the error reported has been mitigated. |
tedinski
pushed a commit
that referenced
this issue
Apr 27, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Steps to reproduce:
cargo new foo
cd foo
percent-encoding
to theCargo.toml
dependencies:with RMC version:
7d0d4cfc6da
I expected to see this happen: Verification Successful
Instead, this happened:
The text was updated successfully, but these errors were encountered: