Skip to content

Commit 2df46b1

Browse files
committed
fixup
1 parent b1f7138 commit 2df46b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

creusot/src/translation/fmir.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl<'tcx> Expr<'tcx> {
107107
Expr::Constructor(_, _, es) => es.iter().all(|e| e.is_pure()),
108108
Expr::Call(_, _, es) => es.iter().all(|e| e.is_pure()),
109109
Expr::Constant(_) => true,
110-
Expr::Cast(e, _, _) => false,
110+
Expr::Cast(_, _, _) => false,
111111
Expr::Tuple(es) => es.iter().all(|e| e.is_pure()),
112112
Expr::Span(_, e) => e.is_pure(),
113113
Expr::Len(e) => e.is_pure(),

0 commit comments

Comments
 (0)