Skip to content
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

Add option to override --crate-name from kani #3054

Merged
merged 9 commits into from
Mar 8, 2024
Prev Previous commit
Next Next commit
Add extern crate a; to c
  • Loading branch information
adpaco-aws committed Mar 8, 2024
commit 21c9168710e045e699779a92e712e6197989c032
1 change: 1 addition & 0 deletions tests/script-based-pre/crate-name-default/c/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright Kani Contributors
// SPDX-License-Identifier: Apache-2.0 OR MIT
extern crate a;
extern crate b;

pub fn add_c(left: usize, right: usize) -> usize {
Expand Down
Loading