// Copyright Kani Contributors // SPDX-License-Identifier: Apache-2.0 OR MIT #[kani::unstable(feature = "always_fails", reason = "do not enable", issue = "")] pub fn always_fails() { assert!(false, "don't call me"); } /// We use "gen-c" since it has to be an existing feature. #[kani::unstable(feature = "gen-c", reason = "internal fake api", issue = "")] pub fn no_op() { kani::cover!(true); }