llvm-project/clang-tools-extra/test/clang-tidy/google-readability-namespac...

31 lines
687 B
C++
Raw Normal View History

// RUN: $(dirname %s)/check_clang_tidy.sh %s google-readability-namespace-comments %t
// REQUIRES: shell
namespace n1 {
namespace n2 {
// 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+3]]:2: warning: namespace 'n1' not terminated with
// CHECK-MESSAGES: :[[@LINE-10]]:11: note: namespace 'n1' starts here
}
}
// CHECK-FIXES: } // namespace n2
// CHECK-FIXES: } // namespace n1
namespace short1 {
namespace short2 {
// Namespaces covering 10 lines or fewer are exempt from this rule.
}
}