summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/namespace/src/hello.mpp
diff options
context:
space:
mode:
authorArthur LAURENT <[email protected]>2025-05-13 20:22:03 +0200
committerArthur LAURENT <[email protected]>2025-05-13 20:22:03 +0200
commitd1fd8beee890a1beb4ef63ad9b9cd476b2e8bc5b (patch)
tree092f4c94273e2e479ca537474d196b8164d33809 /tests/projects/c++/modules/namespace/src/hello.mpp
parent1dcfa0d95ee2cbe521b707cec7e142d8706570ff (diff)
(C++ modules support) add tests
Diffstat (limited to 'tests/projects/c++/modules/namespace/src/hello.mpp')
-rw-r--r--tests/projects/c++/modules/namespace/src/hello.mpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/namespace/src/hello.mpp b/tests/projects/c++/modules/namespace/src/hello.mpp
new file mode 100644
index 000000000..abac9fcb0
--- /dev/null
+++ b/tests/projects/c++/modules/namespace/src/hello.mpp
@@ -0,0 +1,14 @@
+export module hello;
+
+export namespace hello {
+ extern int data__;
+ void say_hello();
+
+ class say {
+ public:
+ say(int data);
+ void hello();
+ private:
+ int data_;
+ };
+}