We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6c2b9b commit 59dcf4dCopy full SHA for 59dcf4d
clang/test/Driver/cl-cxx20-modules.cppm
@@ -14,3 +14,11 @@
14
15
//--- test.pcm
16
// CPP20WARNING-NOT: clang-cl: warning: argument unused during compilation: '/std:c++20' [-Wunused-command-line-argument]
17
+
18
+// test whether the following outputs %Hello.bmi
19
+// RUN: %clang_cl /std:c++20 --precompile -x c++-module -fmodule-output=%t/Hello.bmi -Fo"%t/Hello.bmi" -c %t/Hello.cppm -### 2>&1 | FileCheck %s
20
+// CHECK: "-emit-module-interface"
21
+// CHECK: "-o" "{{.*}}Hello.bmi"
22
23
+//--- Hello.cppm
24
+export module Hello;
0 commit comments