• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: clang-interpreter %s | FileCheck %s
2 // REQUIRES: native, examples
3 
4 int printf(const char *, ...);
5 
main()6 int main() {
7   // CHECK: {{Hello world!}}
8   printf("Hello world!\n");
9   return 0;
10 }
11