diff options
| author | Arthur LAURENT <[email protected]> | 2024-07-22 18:25:35 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2024-07-22 18:25:35 +0200 |
| commit | 6bc66f276570973aced27afc6dd56cc6ce5b2d3b (patch) | |
| tree | 14e5d4f6b987e3e07063a3420b5cc25c61f59f55 /tests/projects/c++/modules/staticlib2/src/main.cpp | |
| parent | af19722ebd25a7c96b3e3b042e4e48cb690b5e63 (diff) | |
add staticlib2 test
Diffstat (limited to 'tests/projects/c++/modules/staticlib2/src/main.cpp')
| -rw-r--r-- | tests/projects/c++/modules/staticlib2/src/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/staticlib2/src/main.cpp b/tests/projects/c++/modules/staticlib2/src/main.cpp new file mode 100644 index 000000000..69e91b126 --- /dev/null +++ b/tests/projects/c++/modules/staticlib2/src/main.cpp @@ -0,0 +1,8 @@ +#include <stdio.h> +import foo; + +int main() { + printf("%d\n", foo::hello()); + return 0; +} + |
