From 4ac11becc2cb716d65cb3ebe5f13d3846ef78b93 Mon Sep 17 00:00:00 2001 From: Suchith J N Date: Sat, 15 Apr 2017 12:17:25 +0530 Subject: [PATCH] [41272] - Fixed to conform to rust project style --- src/librustc/hir/lowering.rs | 17 ++++++++--------- src/test/run-pass/issue-41272.rs | 10 ++++++++++ 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/src/librustc/hir/lowering.rs b/src/librustc/hir/lowering.rs index adefd2a8d7ba..994364ba181e 100644 --- a/src/librustc/hir/lowering.rs +++ b/src/librustc/hir/lowering.rs @@ -2048,15 +2048,14 @@ impl<'a> LoweringContext<'a> { // _ => [|()] { - let wildcard_arm: Option<&Expr> = else_opt.as_ref().map(|p| &**p); - let wildcard_pattern = self.pat_wild(e.span); - let body = - if let Some(else_expr) = wildcard_arm { - P(self.lower_expr(else_expr)) - } else { - self.expr_tuple(e.span, hir_vec![]) - }; - arms.push(self.arm(hir_vec![wildcard_pattern], body)); + let wildcard_arm: Option<&Expr> = else_opt.as_ref().map(|p| &**p); + let wildcard_pattern = self.pat_wild(e.span); + let body = if let Some(else_expr) = wildcard_arm { + P(self.lower_expr(else_expr)) + } else { + self.expr_tuple(e.span, hir_vec![]) + }; + arms.push(self.arm(hir_vec![wildcard_pattern], body)); } let contains_else_clause = else_opt.is_some(); diff --git a/src/test/run-pass/issue-41272.rs b/src/test/run-pass/issue-41272.rs index 154aa5b8cbe6..d0834a26ae77 100644 --- a/src/test/run-pass/issue-41272.rs +++ b/src/test/run-pass/issue-41272.rs @@ -1,3 +1,13 @@ +// Copyright 2017 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + struct Foo; impl Foo {