// RUN: %check_clang_tidy -std=c99,c11,c17 %s readability-non-const-parameter %t static int f(); int f(p) int *p; // CHECK-MESSAGES: :[[@LINE-1]]:8: warning: pointer parameter 'p' can be pointer to const [readability-non-const-parameter] // CHECK-FIXES: const int *p; { return *p; }