1// RUN: %check_clang_tidy %s readability-inconsistent-declaration-parameter-name %t -- \
2// RUN: -config="{CheckOptions: {readability-inconsistent-declaration-parameter-name.Strict: true}}"
3
4void inconsistentFunction(int a, int b, int c);
5// CHECK-MESSAGES: :[[@LINE-1]]:6: warning: function 'inconsistentFunction' has 1 other declaration with different parameter names
6void inconsistentFunction(int prefixA, int b, int cSuffix);
7// CHECK-MESSAGES: :[[@LINE-1]]:6: note: the 1st inconsistent declaration seen here
8// CHECK-MESSAGES: :[[@LINE-2]]:6: note: differing parameters are named here: ('prefixA', 'cSuffix'), in the other declaration: ('a', 'c')
9void inconsistentFunction(int a, int b, int c);
10void inconsistentFunction(int /*c*/, int /*c*/, int /*c*/);
11

source code of clang-tools-extra/test/clang-tidy/checkers/readability/inconsistent-declaration-parameter-name-strict.cpp