Source code

Revision control

Copy as Markdown

Other Tools

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