Raw File
TestQuickReturn.cpp
#include <stdio.h>

int main (int argc, char* argv[]) {
  if (argc != 1)
      return -1;

  return 42;
}
back to top