diff options
| author | ruki <[email protected]> | 2025-12-28 19:20:39 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-12-29 00:09:39 +0800 |
| commit | efbe455bd1bbbd320174d36af99e95fb1628dfa5 (patch) | |
| tree | 46d95304a896556706b2711ccf592003d57edb3e /tests/projects/c++/modules/xmake_tests3/src/main.cpp | |
| parent | 75918ae8a4bd81fa99f649089a8284b5a9d560fc (diff) | |
add more c++modules test
Diffstat (limited to 'tests/projects/c++/modules/xmake_tests3/src/main.cpp')
| -rw-r--r-- | tests/projects/c++/modules/xmake_tests3/src/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/xmake_tests3/src/main.cpp b/tests/projects/c++/modules/xmake_tests3/src/main.cpp new file mode 100644 index 000000000..4e2bb9b57 --- /dev/null +++ b/tests/projects/c++/modules/xmake_tests3/src/main.cpp @@ -0,0 +1,8 @@ +import std; +import Foo; + +int main() { + foo(); + std::printf("Hello from main\n"); + return 0; +} |
