diff options
| author | ruki <[email protected]> | 2023-08-09 22:28:42 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-08-09 22:28:42 +0800 |
| commit | ff7d425096be0d1938c0730d20405c7dc01af09f (patch) | |
| tree | 4051fd1b7dcb125cebfea1e3cb953f58d310028e /tests/projects/c++/modules/stdmodules_cpp_only/src | |
| parent | b30f8296b46a14f4ba4cec9fb0b81a6876d40d0c (diff) | |
add stdmodules test with cpp only
Diffstat (limited to 'tests/projects/c++/modules/stdmodules_cpp_only/src')
| -rw-r--r-- | tests/projects/c++/modules/stdmodules_cpp_only/src/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/stdmodules_cpp_only/src/main.cpp b/tests/projects/c++/modules/stdmodules_cpp_only/src/main.cpp new file mode 100644 index 000000000..477d7c742 --- /dev/null +++ b/tests/projects/c++/modules/stdmodules_cpp_only/src/main.cpp @@ -0,0 +1,9 @@ +import std; + +using namespace std; + +int main(int argc, char** argv) +{ + cout << "hello world!" << endl; + return 0; +} |
