forked from OSchip/llvm-project
[clang-tidy] Add a regression test for google-readability-namespace-comments
Add a regression test for the google-readability-namespace-comments bug introduced in r315057 (reverted in r315580). llvm-svn: 315682
This commit is contained in:
parent
45d5568010
commit
75cd6a663f
|
@ -15,6 +15,20 @@ void f(); // So that the namespace isn't empty.
|
|||
// CHECK-FIXES: } // namespace n2
|
||||
// CHECK-FIXES: } // namespace n1
|
||||
|
||||
#define MACRO macro_expansion
|
||||
namespace MACRO {
|
||||
void f(); // So that the namespace isn't empty.
|
||||
// 1
|
||||
// 2
|
||||
// 3
|
||||
// 4
|
||||
// 5
|
||||
// 6
|
||||
// 7
|
||||
// CHECK-MESSAGES: :[[@LINE+2]]:2: warning: namespace 'macro_expansion' not terminated with
|
||||
// CHECK-MESSAGES: :[[@LINE-10]]:11: note: namespace 'macro_expansion' starts here
|
||||
}
|
||||
// CHECK-FIXES: } // namespace macro_expansion
|
||||
|
||||
namespace short1 {
|
||||
namespace short2 {
|
||||
|
|
Loading…
Reference in New Issue