1 | // RUN: %check_clang_tidy %s readability-inconsistent-declaration-parameter-name %t -- \ |
2 | // RUN: -config="{CheckOptions: {readability-inconsistent-declaration-parameter-name.Strict: true}}" |
3 | |
4 | void inconsistentFunction(int a, int b, int c); |
5 | // CHECK-MESSAGES: :[[@LINE-1]]:6: warning: function 'inconsistentFunction' has 1 other declaration with different parameter names |
6 | void 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') |
9 | void inconsistentFunction(int a, int b, int c); |
10 | void inconsistentFunction(int /*c*/, int /*c*/, int /*c*/); |
11 | |