summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/culling3/src
diff options
context:
space:
mode:
authorArthur LAURENT <[email protected]>2024-07-24 02:42:17 +0200
committerArthur LAURENT <[email protected]>2024-07-24 02:42:17 +0200
commit14f95cbe61ff9c652810913f54e06bcd49465e58 (patch)
tree696bdf48294bb19fddd0cd78061679d45bf97a73 /tests/projects/c++/modules/culling3/src
parent61a90f5cd7c5e9882378127f88c809a890f1a8d8 (diff)
improve culling tests
Diffstat (limited to 'tests/projects/c++/modules/culling3/src')
-rw-r--r--tests/projects/c++/modules/culling3/src/hello.mpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/culling3/src/hello.mpp b/tests/projects/c++/modules/culling3/src/hello.mpp
new file mode 100644
index 000000000..124bd72bc
--- /dev/null
+++ b/tests/projects/c++/modules/culling3/src/hello.mpp
@@ -0,0 +1,10 @@
+module;
+#include <cstdio>
+
+export module hello;
+
+export namespace hello {
+ void say(const char* str) {
+ printf("%s\n", str);
+ }
+}