================ @@ -0,0 +1,61 @@ +// RUN: rm -rf %t +// RUN: mkdir -p %t +// RUN: split-file %s %t +// RUN: %clang -std=c++20 -x c++-module --precompile %t/mymodule.cppm -o %t/mymodule.pcm -I%t ---------------- localspook wrote:
Nit: I think clang can infer this is a module from the `.cppm` extension: ```suggestion // RUN: %clang -std=c++20 --precompile %t/mymodule.cppm -o %t/mymodule.pcm -I%t ``` https://github.com/llvm/llvm-project/pull/178471 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
