diff options
-rw-r--r-- | clang-tools-extra/test/clang-tidy/google-readability-nested-namespace-comments.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/clang-tools-extra/test/clang-tidy/google-readability-nested-namespace-comments.cpp b/clang-tools-extra/test/clang-tidy/google-readability-nested-namespace-comments.cpp index c952bab91d5..809feba1f3b 100644 --- a/clang-tools-extra/test/clang-tidy/google-readability-nested-namespace-comments.cpp +++ b/clang-tools-extra/test/clang-tidy/google-readability-nested-namespace-comments.cpp @@ -1,12 +1,10 @@ -// RUN: %check_clang_tidy %s google-readability-namespace-comments %t -- -std=c++17 +// RUN: %check_clang_tidy %s google-readability-namespace-comments %t -- -- -std=c++17 namespace n1::n2 { namespace n3 { - - // So that namespace is not empty. - void f(); - - + // So that namespace is not empty. + void f(); + // CHECK-MESSAGES: :[[@LINE+4]]:2: warning: namespace 'n3' not terminated with // CHECK-MESSAGES: :[[@LINE-7]]:11: note: namespace 'n3' starts here // CHECK-MESSAGES: :[[@LINE+2]]:3: warning: namespace 'n1::n2' not terminated with a closing comment [google-readability-namespace-comments] |