diff options
| author | Arthur LAURENT <[email protected]> | 2022-11-30 18:08:37 +0100 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2022-11-30 18:09:27 +0100 |
| commit | 7ead9d50bb600a60387009f8dcc98ab87ff21789 (patch) | |
| tree | eeb610788a53efce42f124fbae568b683a803307 /tests/projects/c++/modules/ifdef_module/src/main.cpp | |
| parent | 6bcfad861ab7c499681e3a48ecdfd9262ef3d683 (diff) | |
add test
Diffstat (limited to 'tests/projects/c++/modules/ifdef_module/src/main.cpp')
| -rw-r--r-- | tests/projects/c++/modules/ifdef_module/src/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/ifdef_module/src/main.cpp b/tests/projects/c++/modules/ifdef_module/src/main.cpp new file mode 100644 index 000000000..d7fd82548 --- /dev/null +++ b/tests/projects/c++/modules/ifdef_module/src/main.cpp @@ -0,0 +1,7 @@ +#ifdef FOO +import hello; +#endif + +int main() { + return 0; +} |
