1 // RUN: %check_clang_tidy %s google-readability-namespace-comments %t
2 
3 namespace n1::n2 {
4 namespace /*comment1*/n3/*comment2*/::/*comment3*/inline/*comment4*/n4/*comment5*/ {
5 
6 // So that namespace is not empty.
7 void f();
8 
9 
10 // CHECK-MESSAGES: :[[@LINE+4]]:1: warning: namespace 'n3::n4' not terminated with
11 // CHECK-MESSAGES: :[[@LINE-7]]:23: note: namespace 'n3::n4' starts here
12 // CHECK-MESSAGES: :[[@LINE+2]]:2: warning: namespace 'n1::n2' not terminated with a closing comment [google-readability-namespace-comments]
13 // CHECK-MESSAGES: :[[@LINE-10]]:11: note: namespace 'n1::n2' starts here
14 }}
15 // CHECK-FIXES: }  // namespace n3::n4
16 // CHECK-FIXES: }  // namespace n1::n2
17 
18