diff options
| author | Arthur LAURENT <[email protected]> | 2024-01-31 13:02:11 +0100 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2024-01-31 13:45:43 +0100 |
| commit | 89f151ab335ad2aa1e5d1cc900f1e3837caa6437 (patch) | |
| tree | 51400158d69a54fafac973d4a7b8ca40ff540265 /tests/projects/c++/modules/aliased_headerunit/src/main.cpp | |
| parent | f3ec9cc0f7cf6d0b48dce8a69c5f6103b9dd6df3 (diff) | |
add a test for aliased headerunits
Diffstat (limited to 'tests/projects/c++/modules/aliased_headerunit/src/main.cpp')
| -rw-r--r-- | tests/projects/c++/modules/aliased_headerunit/src/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/aliased_headerunit/src/main.cpp b/tests/projects/c++/modules/aliased_headerunit/src/main.cpp new file mode 100644 index 000000000..ad786367e --- /dev/null +++ b/tests/projects/c++/modules/aliased_headerunit/src/main.cpp @@ -0,0 +1,7 @@ +import hello; +import "header.hpp"; + +int main() { + hello::say(hello::FOO); + return 0; +} |
