aboutsummaryrefslogtreecommitdiff
path: root/modtest/src3.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'modtest/src3.ixx')
-rw-r--r--modtest/src3.ixx9
1 files changed, 9 insertions, 0 deletions
diff --git a/modtest/src3.ixx b/modtest/src3.ixx
new file mode 100644
index 0000000..e32300e
--- /dev/null
+++ b/modtest/src3.ixx
@@ -0,0 +1,9 @@
+export module M3;
+
+// Import statements here.
+import M8;
+import M4;
+
+export int f3() {
+ return f8() + f4();
+}