From 7210427c931d41fd52608ee5a502ea54414d6606 Mon Sep 17 00:00:00 2001 From: ruki Date: Fri, 6 Sep 2019 22:51:54 +0800 Subject: add some c++ module tests --- tests/projects/c++/modules/modulemap.modulemap/src/main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/projects/c++/modules/modulemap.modulemap/src/main.cpp (limited to 'tests/projects/c++/modules/modulemap.modulemap/src/main.cpp') diff --git a/tests/projects/c++/modules/modulemap.modulemap/src/main.cpp b/tests/projects/c++/modules/modulemap.modulemap/src/main.cpp new file mode 100644 index 000000000..6fffc01f7 --- /dev/null +++ b/tests/projects/c++/modules/modulemap.modulemap/src/main.cpp @@ -0,0 +1,9 @@ +// #include "hello.h" +import hello; + +int main() { + hello::say_hello(); + hello::say_xz(); + hello::say_hi(); + return 0; +} \ No newline at end of file -- cgit v1.3.1