gecko-dev/xpcom/tests/TestBlockingProcess.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

9 lines
144 B
C++

#include <stdio.h>
#include "mozilla/Unused.h"
int main() {
char tmp;
mozilla::Unused << fread(&tmp, sizeof(tmp), 1, stdin);
return 0;
}