summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/readability-const-return-type.cpp
blob: 695ed1d83fa1091c3b44dd32193d369df992212c (plain)
1
2
3
4
5
const int p1() {
// CHECK-MESSAGES: [[@LINE-1]]:1: warning: return type 'const int' is 'const'-qualified at the top level, which may reduce code readability without improving const correctness
// CHECK-FIXES: int p1() {
  return 1;
}