1 // RUN: %check_clang_tidy %s cppcoreguidelines-pro-type-const-cast %t
2 
3 const int *i;
4 int *j;
f()5 void f() { j = const_cast<int *>(i); }
6 // CHECK-MESSAGES: :[[@LINE-1]]:16: warning: do not use const_cast [cppcoreguidelines-pro-type-const-cast]
7