commit | c13ee34378f14733692c2714d02549563fa16431 | [log] [tgz] |
---|---|---|
author | Daniel Jasper <djasper@google.com> | Thu Mar 27 09:43:54 2014 +0000 |
committer | Daniel Jasper <djasper@google.com> | Thu Mar 27 09:43:54 2014 +0000 |
tree | 4385540eca93a0beb9ab8671ccf7da52e8f2a870 | |
parent | b714601f8f0132fdced747de34752ee63d2bdc86 [diff] [blame] |
clang-format: Correctly identify ObjC Block with return type. llvm-svn: 204905
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 3da478c..fa8ed38 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp
@@ -8167,6 +8167,10 @@ " secondBlock:^(Bar *b) {\n" " // ...\n" " int i;\n" + " }\n" + " thirdBlock:^Foo(Bar *b) {\n" + " // ...\n" + " int i;\n" " }];"); verifyFormat("f(^{\n"