summaryrefslogtreecommitdiff
path: root/tests/projects/other/autogen/autogen_codedep/src/main.cpp
diff options
context:
space:
mode:
authorruki <[email protected]>2024-07-25 00:54:13 +0800
committerruki <[email protected]>2024-07-25 00:54:13 +0800
commitc7c412f6458f5aceeb02e9bfc292dc7aac0852d3 (patch)
tree90fc1076e7dd5a2971d7033bee28825a80e59477 /tests/projects/other/autogen/autogen_codedep/src/main.cpp
parent039cd576af844dc146b7517160648765b90b81b1 (diff)
move autogen tests
Diffstat (limited to 'tests/projects/other/autogen/autogen_codedep/src/main.cpp')
-rw-r--r--tests/projects/other/autogen/autogen_codedep/src/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/other/autogen/autogen_codedep/src/main.cpp b/tests/projects/other/autogen/autogen_codedep/src/main.cpp
new file mode 100644
index 000000000..3241308f7
--- /dev/null
+++ b/tests/projects/other/autogen/autogen_codedep/src/main.cpp
@@ -0,0 +1,10 @@
+#include <iostream>
+
+using namespace std;
+
+extern unsigned char g_codegen_data[];
+
+int main(int argc, char** argv) {
+ cout << (const char*)g_codegen_data << endl;
+ return 0;
+}