teak-llvm/clang/test/Misc/interpreter.c
2015-06-09 06:33:13 +00:00

11 lines
191 B
C

// RUN: clang-interpreter %s | FileCheck %s
// REQUIRES: native, examples
int printf(const char *, ...);
int main() {
// CHECK: {{Hello world!}}
printf("Hello world!\n");
return 0;
}