summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/bugprone-argument-comment.cpp
blob: 3099575a35b94e06f223b6786ba677551621f0b8 (plain)
1
2
3
4
5
6
// bugprone-argument-comment

void f(int x, int y);
void g() {
  f(/*y=*/0, /*z=*/0);
}