aboutsummaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2013-04-09 17:46:55 +0000
committerDaniel Jasper <djasper@google.com>2013-04-09 17:46:55 +0000
commit5999f7634e80daf849a036aa830fc0e4b1e03555 (patch)
treec832dbaafb1e26aba4b3a867153765367bcd972c /unittests
parent99b0e14691b61d8db4f1d239a11615957071fb45 (diff)
downloadclang-5999f7634e80daf849a036aa830fc0e4b1e03555.tar.gz
Fix comments before labels.
Before: switch (...) { // a // b // c case first: break; } After: switch (...) { // a // b // c case first: break; } git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179107 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Format/FormatTest.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp
index cb28a4ff78..4585ac2ab9 100644
--- a/unittests/Format/FormatTest.cpp
+++ b/unittests/Format/FormatTest.cpp
@@ -432,6 +432,7 @@ TEST_F(FormatTest, FormatsSwitchStatement) {
" // Do nothing.\n"
"}");
verifyFormat("switch (x) {\n"
+ "// comment\n"
"// if 1, do f()\n"
"case 1:\n"
" f();\n"