-
Notifications
You must be signed in to change notification settings - Fork 97
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
Unexpected Alias
type with -Z valid-value-checks
#3113
Labels
[C] Bug
This is a bug. Something isn't working.
Comments
celinval
added a commit
to celinval/rust-dev
that referenced
this issue
Mar 28, 2024
We were only instantiating before, which would leak an AliasTy. I added a test case that reproduce the issue seen here: model-checking/kani#3113
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Mar 29, 2024
Normalize the result of `Fields::ty_with_args` We were only instantiating before, which would leak an AliasTy. I added a test case that reproduce the issue seen here: model-checking/kani#3113 r? `@oli-obk`
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Mar 29, 2024
Normalize the result of `Fields::ty_with_args` We were only instantiating before, which would leak an AliasTy. I added a test case that reproduce the issue seen here: model-checking/kani#3113 r? ``@oli-obk``
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this issue
Mar 29, 2024
Rollup merge of rust-lang#123176 - celinval:smir-field-ty, r=oli-obk Normalize the result of `Fields::ty_with_args` We were only instantiating before, which would leak an AliasTy. I added a test case that reproduce the issue seen here: model-checking/kani#3113 r? ``@oli-obk``
tautschnig
added a commit
to tautschnig/kani
that referenced
this issue
Apr 5, 2024
Changes required due to: - rust-lang/rust@a325bce3cd Normalize the result of Fields::ty_with_args Resolves: model-checking#3125, model-checking#3113
tautschnig
added a commit
that referenced
this issue
Apr 5, 2024
Changes required due to: - rust-lang/rust@a325bce3cd Normalize the result of Fields::ty_with_args Resolves: #3125, #3113
Was fixed in #3127. |
celinval
pushed a commit
to celinval/kani-dev
that referenced
this issue
Apr 17, 2024
Changes required due to: - rust-lang/rust@a325bce3cd Normalize the result of Fields::ty_with_args Resolves: model-checking#3125, model-checking#3113
zpzigi754
pushed a commit
to zpzigi754/kani
that referenced
this issue
May 8, 2024
Changes required due to: - rust-lang/rust@a325bce3cd Normalize the result of Fields::ty_with_args Resolves: model-checking#3125, model-checking#3113
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#3085 introduced the following test in
tests/kani/ValidValues/write_invalid.rs
:In the toolchain upgrade in #3102 we're getting an unexpected compilation error for this test (CI run here) which looks like this:
And it's coming from this function:
with Kani version: 0.48.0
We're going to change the test to be a "fixme" test. We should first fix avoid returning an
Alias
from StableMIR, and then restore the test.The text was updated successfully, but these errors were encountered: