diff options
| author | ruki <[email protected]> | 2023-04-30 21:25:04 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-04-30 21:25:04 +0800 |
| commit | a2d57245289f89bc0473caa3cf9b0dad60cc6342 (patch) | |
| tree | 40ed223a26b1ea03888fc45a662c1bd158fc9526 /tests/projects/other/autogen_codedep/src/main.cpp | |
| parent | 5075fc82edcb714df4f34f4dec34268ee2914d49 (diff) | |
add autogen test
Diffstat (limited to 'tests/projects/other/autogen_codedep/src/main.cpp')
| -rw-r--r-- | tests/projects/other/autogen_codedep/src/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/other/autogen_codedep/src/main.cpp b/tests/projects/other/autogen_codedep/src/main.cpp new file mode 100644 index 000000000..53f141f46 --- /dev/null +++ b/tests/projects/other/autogen_codedep/src/main.cpp @@ -0,0 +1,10 @@ +#include <iostream> + +using namespace std; + +extern unsigned char data[]; + +int main(int argc, char** argv) { + cout << (const char*)data << endl; + return 0; +} |
