From 4811e5b6c71657772b4c12e6f5cbb5c1624bf669 Mon Sep 17 00:00:00 2001 From: Tim Diekmann <21277928+Cyres@users.noreply.github.com> Date: Mon, 3 Sep 2018 15:26:27 +0200 Subject: [PATCH] Add missing brace --- src/test/run-pass/const-int-wrapping.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/run-pass/const-int-wrapping.rs b/src/test/run-pass/const-int-wrapping.rs index 072b150cd15a..ab7c98f9824e 100644 --- a/src/test/run-pass/const-int-wrapping.rs +++ b/src/test/run-pass/const-int-wrapping.rs @@ -42,6 +42,6 @@ fn main() { assert_eq!(SHL_A, ident(128)); assert_eq!(SHL_B, ident(1)); - assert_eq!(SHR_A, ident(1); + assert_eq!(SHR_A, ident(1)); assert_eq!(SHR_B, ident(128)); }