diff options
| author | Arthur LAURENT <[email protected]> | 2024-02-02 18:27:52 +0100 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2024-02-02 18:27:52 +0100 |
| commit | 22d46b0b3586b535f183a256fee5b198ebb96237 (patch) | |
| tree | b26f79446b9b43cd3bd5e8c3db58c3da2e3af334 /tests/projects/c++/modules/circular_dependency/src/main.cpp | |
| parent | b64836f09b250e1d77773cb9e0c53c33ecaaa9de (diff) | |
add a test for circular dependency detection
Diffstat (limited to 'tests/projects/c++/modules/circular_dependency/src/main.cpp')
| -rw-r--r-- | tests/projects/c++/modules/circular_dependency/src/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/circular_dependency/src/main.cpp b/tests/projects/c++/modules/circular_dependency/src/main.cpp new file mode 100644 index 000000000..6f80b6c7d --- /dev/null +++ b/tests/projects/c++/modules/circular_dependency/src/main.cpp @@ -0,0 +1,7 @@ +import hello; + +int main() { + hello::say s(sizeof(hello::say)); + s.hello(); + return 0; +}
\ No newline at end of file |
