xref: /minix3/external/bsd/llvm/dist/clang/test/Misc/interpreter.c (revision bdb565187c0f1a04513dd488df843317b27f86c8)
1 // RUN: clang-interpreter %s | FileCheck %s
2 // REQUIRES: native, examples
3 
4 int printf(const char *, ...);
5 
6 int main() {
7   // CHECK: {{Hello world!}}
8   printf("Hello world!\n");
9   return 0;
10 }
11