Skip to content

Commit b87d442

Browse files
committed
Minor change to test to silence warning about unused binding in pattern matching during build.
1 parent 206b191 commit b87d442

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcprover-rust/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ mod tests {
517517
if let Ok(el) = results {
518518
let_cxx_string!(non_existing_property = "main.the.jabberwocky");
519519
let prop_status = cprover_api::get_property_status(&el, &non_existing_property);
520-
if let Err(status) = prop_status {
520+
if let Err(_status) = prop_status {
521521
Ok(())
522522
} else {
523523
let error_msg = format!(

0 commit comments

Comments
 (0)