gecko-dev/xpcom/tests/TestQuickReturn.cpp
Sylvestre Ledru 6f45c666bc Bug 1513205 - Also update the tests to match the Google coding style r=Ehsan
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D14595

--HG--
extra : moz-landing-system : lando
2018-12-14 18:10:35 +00:00

8 lines
99 B
C++

#include <stdio.h>
int main(int argc, char* argv[]) {
if (argc != 1) return -1;
return 42;
}