From 57acbb5f2842a94a8760d2950b715dfb6bae03ff Mon Sep 17 00:00:00 2001 From: Folkert Date: Sun, 10 Jul 2022 14:06:28 +0200 Subject: [PATCH] clippy --- crates/compiler/mono/src/ir.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/compiler/mono/src/ir.rs b/crates/compiler/mono/src/ir.rs index 8e2e4d2cc3..e11a3cdb90 100644 --- a/crates/compiler/mono/src/ir.rs +++ b/crates/compiler/mono/src/ir.rs @@ -9120,7 +9120,7 @@ where fn empty_lambda_set_error() -> Stmt<'static> { let msg = "a Lambda Set is empty. Most likely there is a type error in your program."; - return Stmt::RuntimeError(msg); + Stmt::RuntimeError(msg) } /// Use the lambda set to figure out how to make a call-by-name