1// RUN: %check_clang_tidy %s modernize-avoid-c-arrays %t -- \
2// RUN: -config='{CheckOptions: { modernize-avoid-c-arrays.AllowStringArrays: true }}'
3
4const char name[] = "name";
5const char array[] = {'n', 'a', 'm', 'e', '\0'};
6// CHECK-MESSAGES: :[[@LINE-1]]:7: warning: do not declare C-style arrays, use std::array<> instead [modernize-avoid-c-arrays]
7
8void takeCharArray(const char name[]);
9// CHECK-MESSAGES: :[[@LINE-1]]:26: warning: do not declare C-style arrays, use std::array<> instead [modernize-avoid-c-arrays]
10

source code of clang-tools-extra/test/clang-tidy/checkers/modernize/avoid-c-arrays-ignores-strings.cpp