diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-26 23:58:44 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-26 23:58:44 +0300 |
commit | 3fcca74e340e23b88444748efd792df91a81da63 (patch) | |
tree | ee2418a09f9a745fa4f633041f7b2f72a4209991 /modtest/src16.ixx | |
parent | 534e94ffc35dae3a0b2cc9f1e60e7e452872c512 (diff) | |
download | meson-vsmodtest.zip meson-vsmodtest.tar.gz meson-vsmodtest.tar.bz2 |
Q&D experiment to scan and build C++ modules with VS.vsmodtest
Diffstat (limited to 'modtest/src16.ixx')
-rw-r--r-- | modtest/src16.ixx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modtest/src16.ixx b/modtest/src16.ixx new file mode 100644 index 0000000..3d45d12 --- /dev/null +++ b/modtest/src16.ixx @@ -0,0 +1,9 @@ +export module M16; + +// Import statements here. +import M17; +import M21; + +export int f16() { + return f17() + f21(); +} |