diff options
| author | Arthur LAURENT <[email protected]> | 2025-05-11 17:25:01 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2025-05-11 17:25:01 +0200 |
| commit | d1a7e51232db306c2cf5481389514bf15135e039 (patch) | |
| tree | 890b34bad7653bd06b8632d1d0c8fbf1d7faf7b7 /tests/projects/c++/modules/stdmodules_deps/src/foo.cpp | |
| parent | ac3930b4b349cb218c11ff7e29e296db00a5bee4 (diff) | |
(C++ modules support) fix stdmodules_deps test for gcc as it doesn't implement private module fragment atm
Diffstat (limited to 'tests/projects/c++/modules/stdmodules_deps/src/foo.cpp')
| -rw-r--r-- | tests/projects/c++/modules/stdmodules_deps/src/foo.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/stdmodules_deps/src/foo.cpp b/tests/projects/c++/modules/stdmodules_deps/src/foo.cpp new file mode 100644 index 000000000..c1e34dec6 --- /dev/null +++ b/tests/projects/c++/modules/stdmodules_deps/src/foo.cpp @@ -0,0 +1,3 @@ +module foo; + +auto my_sum(std::size_t a, std::size_t b) -> std::size_t { return a + b; } |
