diff options
| author | Arthur LAURENT <[email protected]> | 2022-08-03 02:36:31 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2022-08-03 02:36:31 +0200 |
| commit | dcf5a1dfa3e592563093e862e0bb4ecd2ac3b3ba (patch) | |
| tree | 542dc30f36b8c3f1647ce6ec78cfe353f28716ec /tests/projects/c++/modules/user_headerunit/src/main.cpp | |
| parent | 92b8b6629b6c3b4b59d78835b7e4719313c04ae1 (diff) | |
[C++20 Modules] Add tests for headerunits
Diffstat (limited to 'tests/projects/c++/modules/user_headerunit/src/main.cpp')
| -rw-r--r-- | tests/projects/c++/modules/user_headerunit/src/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/user_headerunit/src/main.cpp b/tests/projects/c++/modules/user_headerunit/src/main.cpp new file mode 100644 index 000000000..ad786367e --- /dev/null +++ b/tests/projects/c++/modules/user_headerunit/src/main.cpp @@ -0,0 +1,7 @@ +import hello; +import "header.hpp"; + +int main() { + hello::say(hello::FOO); + return 0; +} |
