7 lines
84 B
C++
7 lines
84 B
C++
|
|
// misc-argument-comment
|
|
void f(int x, int y);
|
|
void g() {
|
|
f(/*y=*/0, /*z=*/0);
|
|
}
|