Skip to content

Commit

Permalink
Cargo fmt made clippy complain
Browse files Browse the repository at this point in the history
  • Loading branch information
jfecher committed Oct 27, 2023
1 parent 93a9be4 commit 7404da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/noirc_frontend/src/hir_def/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ impl Type {
env.find_all_unbound_type_variables(interner, bindings);
}
Type::MutableReference(elem) => {
elem.find_all_unbound_type_variables(interner, bindings)
elem.find_all_unbound_type_variables(interner, bindings);
}
Type::Forall(_, typ) => typ.find_all_unbound_type_variables(interner, bindings),
Type::TypeVariable(type_variable, _) | Type::NamedGeneric(type_variable, _) => {
Expand Down

0 comments on commit 7404da5

Please sign in to comment.