brintos

brintos / llvm-project-archived public Read only

0
0
Text · 323 B · f46a0f7 Raw
16 lines · plain
1// RUN: rm -rf %t2// RUN: mkdir %t3// RUN: split-file %s %t4//5// RUN: %clang_cc1 -fallow-pcm-with-compiler-errors -fmodule-name=c  -xc++ -emit-module -fmodules -std=gnu++20 %t/a.cppmap -o %t/c.pcm6//--- a.cppmap7module "c" {8 header "a.h"9}10 11//--- a.h12template <class>13class C {};14template <class T>15C<T>::operator C() {}16