android_mt6572_jiabo/external/clang/test/Misc/interpreter.c
2025-09-05 16:56:03 +08:00

10 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;
}