Files
MyPal/xpcom/tests/TestQuickReturn.cpp
T
2019-03-11 13:26:37 +03:00

9 lines
106 B
C++

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