// Copyright Kani Contributors // SPDX-License-Identifier: Apache-2.0 OR MIT // kani-flags: --no-unwinding-checks // Added to fix me because there are no tests for the annotations themselves. // TODO : The unwind value needs to be parsed and the unwind needs to be applied to each harness, we do not test this behavior yet. #[kani::proof] fn main() { assert!(1 == 2); } #[kani::proof] #[kani::unwind(10)] fn harness() { let mut counter = 0; loop { counter += 1; assert!(counter < 10); } }