diff options
| author | Christian Rendina <[email protected]> | 2025-04-22 09:26:14 +0200 |
|---|---|---|
| committer | Christian Rendina <[email protected]> | 2025-04-22 09:26:14 +0200 |
| commit | 85eab26586ebff3dcf7d9d476011f1df951965d1 (patch) | |
| tree | 608025ff5933a7109598ebe63eea4eff075bad0b /tests/projects/c++/modules/stdmodules_deps/src/main.cpp | |
| parent | 42371b9d4d7b3c397e620bfa29041614a8416041 (diff) | |
| parent | 40bfb6e1980d81454c9592da7eaaf0aded11f1ec (diff) | |
Merge branch 'dev' of https://github.com/xmake-io/xmake into dev
Diffstat (limited to 'tests/projects/c++/modules/stdmodules_deps/src/main.cpp')
| -rw-r--r-- | tests/projects/c++/modules/stdmodules_deps/src/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/stdmodules_deps/src/main.cpp b/tests/projects/c++/modules/stdmodules_deps/src/main.cpp new file mode 100644 index 000000000..e40a369fa --- /dev/null +++ b/tests/projects/c++/modules/stdmodules_deps/src/main.cpp @@ -0,0 +1,9 @@ +import foo; +import bar; + +import std; + +int main() { + std::cout << my_sum(1, 2) << ":" << my_sum2(1, 2) << std::endl; + return 0; +} |
