From 07d4f8dc15b9b88bf40eb89df9bfaf8cbeafc69c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Besnier?= Date: Mon, 28 Dec 2020 19:54:17 +0100 Subject: [PATCH] make clippy happy --- compiler/parse/src/expr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/parse/src/expr.rs b/compiler/parse/src/expr.rs index 743d32262b..f584b16d33 100644 --- a/compiler/parse/src/expr.rs +++ b/compiler/parse/src/expr.rs @@ -1871,7 +1871,7 @@ pub fn list_literal<'a>(min_indent: u16) -> impl Parser<'a, Expr<'a>> { Expr::List { items: allocated.into_bump_slice(), - final_comments: final_comments, + final_comments, } }), )