brintos

brintos / llvm-project-archived public Read only

0
0
Text · 297 B · 9f98d86 Raw
7 lines · plain
1// RUN: %check_clang_tidy -assume-filename=const-cast.cpp %s cppcoreguidelines-pro-type-const-cast %t2 3const int *i;4int *j;5void f() { j = const_cast<int *>(i); }6// CHECK-MESSAGES: :[[@LINE-1]]:16: warning: do not use const_cast to remove const qualifier [cppcoreguidelines-pro-type-const-cast]7