You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Rust, producing an invalid value triggers immediate UB. Kani currently has partial and unstable support to detecting invalid value UB which was added in #3085.
This issue is to track implementation of missing checks listed bellow, which are currently encoded as an assert!(false):
In Rust, producing an invalid value triggers immediate UB. Kani currently has partial and unstable support to detecting invalid value UB which was added in #3085.
This issue is to track implementation of missing checks listed bellow, which are currently encoded as an
assert!(false)
:copy_nonoverlapping
,copy
.FnPtr
,Dyn
.char
surrogate values #3241Note:
Dyn*
is not currently supported in Kani (#1784); thus, we left it out of the scope of this issue.The text was updated successfully, but these errors were encountered: