about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Diekmann <21277928+Cyres@users.noreply.github.com>2018-09-03 15:26:27 +0200
committerGitHub <noreply@github.com>2018-09-03 15:26:27 +0200
commit4811e5b6c71657772b4c12e6f5cbb5c1624bf669 (patch)
tree93b29043dd8d66d0477189614d43bb66b1925562
parentbeadf75ad02d1b734b450deee040918591a81b0e (diff)
downloadrust-4811e5b6c71657772b4c12e6f5cbb5c1624bf669.tar.gz
rust-4811e5b6c71657772b4c12e6f5cbb5c1624bf669.zip
Add missing brace
-rw-r--r--src/test/run-pass/const-int-wrapping.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/const-int-wrapping.rs b/src/test/run-pass/const-int-wrapping.rs
index 072b150cd15..ab7c98f9824 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));
 }