| // RUN: %check_clang_tidy %s google-readability-namespace-comments %t |
| void f(); // So that the namespace isn't empty. |
| // CHECK-MESSAGES: :[[@LINE+4]]:2: warning: namespace 'n2' not terminated with a closing comment [google-readability-namespace-comments] |
| // CHECK-MESSAGES: :[[@LINE-7]]:11: note: namespace 'n2' starts here |
| // CHECK-MESSAGES: :[[@LINE+2]]:3: warning: namespace 'n1' not terminated with |
| // CHECK-MESSAGES: :[[@LINE-10]]:11: note: namespace 'n1' starts here |
| // CHECK-FIXES: } // namespace n2 |
| // CHECK-FIXES: } // namespace n1 |
| #define MACRO macro_expansion |
| void f(); // So that the namespace isn't empty. |
| // 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 |
| // Namespaces covering 10 lines or fewer are exempt from this rule. |