fune/tools/clang-tidy/test/bugprone-argument-comment.cpp
2018-11-30 06:36:07 -05:00

6 lines
88 B
C++

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