diff options
Diffstat (limited to 'clang/bindings/python/tests/cindex/INPUTS/hello.cpp')
-rw-r--r-- | clang/bindings/python/tests/cindex/INPUTS/hello.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/bindings/python/tests/cindex/INPUTS/hello.cpp b/clang/bindings/python/tests/cindex/INPUTS/hello.cpp new file mode 100644 index 0000000..7ef086e --- /dev/null +++ b/clang/bindings/python/tests/cindex/INPUTS/hello.cpp @@ -0,0 +1,6 @@ +#include "stdio.h" + +int main(int argc, char* argv[]) { + printf("hello world\n"); + return 0; +} |