1 // RUN: %clang_scs -D INCLUDE_RUNTIME %s -o %t
2 // RUN: %run %t
3 
4 // RUN: %clang_scs %s -o %t
5 // RUN: not --crash %run %t
6 
7 // Basic smoke test for the runtime
8 
9 #ifdef INCLUDE_RUNTIME
10 #include "minimal_runtime.h"
11 #endif
12 
13 int main(int argc, char **argv) {
14   printf("In main.\n");
15   return 0;
16 }
17