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
//!file.rs//! This checks that Kani zero-size playback, 2 of them in a row.#[kani::proof]fnany_is_ok(){let unit:() = kani::any();let unit2:() = kani::any();
kani::cover!(unit == ());
kani::cover!(unit2 == ());}
I tried this code:
using the following command line invocation:
with Kani version:
I expected to see this happen: I expected 2 independently named harnesses to be injected.Instead, this happened: the 2 harnesses have the same name. Probablybecause we did not move in the index.
After discussion, we should Inject 1 harness deduplicated.
The text was updated successfully, but these errors were encountered: