diff options
| author | Arthur Laurent <[email protected]> | 2022-12-01 12:02:31 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-01 12:02:31 +0100 |
| commit | 9b21e149d3c4966b0e0a79555935a7d4560afed7 (patch) | |
| tree | 0007e9fc274ddcfd905189d7c82521a9b5b0d73a /tests/projects/c++/modules/stdmodules/test/test.cpp | |
| parent | 944c55ad89e0ee78d70451097f37ae11651e82b8 (diff) | |
| parent | 05d9e82172739b36900b6cbc9a4c72625d003f3b (diff) | |
Merge branch 'dev' into process_modules
Diffstat (limited to 'tests/projects/c++/modules/stdmodules/test/test.cpp')
| -rw-r--r-- | tests/projects/c++/modules/stdmodules/test/test.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/stdmodules/test/test.cpp b/tests/projects/c++/modules/stdmodules/test/test.cpp new file mode 100644 index 000000000..a12813c24 --- /dev/null +++ b/tests/projects/c++/modules/stdmodules/test/test.cpp @@ -0,0 +1,13 @@ +#ifdef _MSC_VER +import std.core; +#else +import std; +#endif + +import my_module; + +using namespace std; + +int main(int argc, char** argv) { + cout << my_sum(1, 1) << endl; +} |
