blob: 54208102e6f07f3db0e96a51760414c9bcd79bbc [file] [log] [blame]
// RUN: %check_clang_tidy %s cppcoreguidelines-pro-type-reinterpret-cast %t
int i = 0;
void *j;
void f() { j = reinterpret_cast<void *>(i); }
// CHECK-MESSAGES: :[[@LINE-1]]:16: warning: do not use reinterpret_cast [cppcoreguidelines-pro-type-reinterpret-cast]