aboutsummaryrefslogtreecommitdiff
path: root/test/clang-tidy/readability-inconsistent-declaration-parameter-name-strict.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/clang-tidy/readability-inconsistent-declaration-parameter-name-strict.cpp')
-rw-r--r--test/clang-tidy/readability-inconsistent-declaration-parameter-name-strict.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/clang-tidy/readability-inconsistent-declaration-parameter-name-strict.cpp b/test/clang-tidy/readability-inconsistent-declaration-parameter-name-strict.cpp
new file mode 100644
index 00000000..90ac45fd
--- /dev/null
+++ b/test/clang-tidy/readability-inconsistent-declaration-parameter-name-strict.cpp
@@ -0,0 +1,11 @@
+// RUN: %check_clang_tidy %s readability-inconsistent-declaration-parameter-name %t -- \
+// RUN: -config="{CheckOptions: [{key: readability-inconsistent-declaration-parameter-name.Strict, value: 1}]}" \
+// RUN: -- -std=c++11
+
+void inconsistentFunction(int a, int b, int c);
+// CHECK-MESSAGES: :[[@LINE-1]]:6: warning: function 'inconsistentFunction' has 1 other declaration with different parameter names
+void inconsistentFunction(int prefixA, int b, int cSuffix);
+// CHECK-MESSAGES: :[[@LINE-1]]:6: note: the 1st inconsistent declaration seen here
+// CHECK-MESSAGES: :[[@LINE-2]]:6: note: differing parameters are named here: ('prefixA', 'cSuffix'), in the other declaration: ('a', 'c')
+void inconsistentFunction(int a, int b, int c);
+void inconsistentFunction(int /*c*/, int /*c*/, int /*c*/);