forked from mirrors/gecko-dev
Reformatting this directory can break some of the tests here. Differential Revision: https://phabricator.services.mozilla.com/D13518
6 lines
88 B
C++
6 lines
88 B
C++
// bugprone-argument-comment
|
|
|
|
void f(int x, int y);
|
|
void g() {
|
|
f(/*y=*/0, /*z=*/0);
|
|
}
|