about summary refs log tree commit diff
diff options
context:
space:
mode:
authorpmk21 <prithvikrishna49@gmail.com>2020-03-31 16:13:51 +0530
committerpmk21 <prithvikrishna49@gmail.com>2020-03-31 16:13:51 +0530
commit79ab05458fb8eea29f1ebf9c15e73de9326eb0d5 (patch)
tree28cb312b81b4845e4362fd31bd5b430c4c98c2c0
parent4cac9786c527bf4f9e14bfc03e8b5adf5cef2b1d (diff)
downloadrust-79ab05458fb8eea29f1ebf9c15e73de9326eb0d5.tar.gz
rust-79ab05458fb8eea29f1ebf9c15e73de9326eb0d5.zip
Small formatting change
-rw-r--r--tests/ui/single_match.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ui/single_match.rs b/tests/ui/single_match.rs
index 6766a6409b2..1c55af5dfb6 100644
--- a/tests/ui/single_match.rs
+++ b/tests/ui/single_match.rs
@@ -90,4 +90,6 @@ macro_rules! single_match {
     };
 }
 
-fn main() {single_match!(5);}
+fn main() {
+    single_match!(5);
+}