From 8dda9929e58155ef035e7517c4be0860f6205791 Mon Sep 17 00:00:00 2001 From: ayazhafiz Date: Mon, 20 Dec 2021 19:08:29 -0600 Subject: [PATCH] Fix clippy warning --- compiler/unify/src/unify.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/compiler/unify/src/unify.rs b/compiler/unify/src/unify.rs index 65beef2121..bb8402f3f4 100644 --- a/compiler/unify/src/unify.rs +++ b/compiler/unify/src/unify.rs @@ -814,10 +814,7 @@ fn unify_tag_union_new( subs.commit_snapshot(snapshot); - let tag_problems = - unify_shared_tags_new(subs, pool, ctx, shared_tags, other_tags, ext, recursion_var); - - tag_problems + unify_shared_tags_new(subs, pool, ctx, shared_tags, other_tags, ext, recursion_var) } }