From e5ba7a1d14ef6f8afa2491b4dc0131169aaa4a76 Mon Sep 17 00:00:00 2001 From: Arthur LAURENT Date: Sun, 21 Jul 2024 16:48:40 +0200 Subject: add a policy to disable module culling --- tests/projects/c++/modules/culling/src/hello.mpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/projects/c++/modules/culling/src/hello.mpp (limited to 'tests/projects/c++/modules/culling/src') diff --git a/tests/projects/c++/modules/culling/src/hello.mpp b/tests/projects/c++/modules/culling/src/hello.mpp new file mode 100644 index 000000000..124bd72bc --- /dev/null +++ b/tests/projects/c++/modules/culling/src/hello.mpp @@ -0,0 +1,10 @@ +module; +#include + +export module hello; + +export namespace hello { + void say(const char* str) { + printf("%s\n", str); + } +} -- cgit v1.3.1