2 // RUN: split-file %s %t
5 // RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-module-interface -o %t/a.pcm
6 // RUN: %clang_cc1 -std=c++20 %t/b.cppm -fmodule-file=a=%t/a.pcm -emit-module-interface \
8 // RUN: %clang_cc1 -std=c++20 %t/c.cppm -fmodule-file=a=%t/a.pcm -fmodule-file=b=%t/b.pcm \
9 // RUN: -fsyntax-only -verify
11 // RUN: %clang_cc1 -std=c++20 -DEXPORT_OPERATOR %t/a.cppm -emit-module-interface -o %t/a.pcm
12 // RUN: %clang_cc1 -std=c++20 -DEXPORT_OPERATOR %t/b.cppm -fmodule-file=a=%t/a.pcm \
13 // RUN: -emit-module-interface -o %t/b.pcm
14 // RUN: %clang_cc1 -std=c++20 -DEXPORT_OPERATOR %t/c.cppm -fmodule-file=a=%t/a.pcm \
15 // RUN: -fmodule-file=b=%t/b.pcm -fsyntax-only -verify
17 // Test again with reduced BMI.
19 // RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-reduced-module-interface -o %t/a.pcm
20 // RUN: %clang_cc1 -std=c++20 %t/b.cppm -fmodule-file=a=%t/a.pcm -emit-reduced-module-interface \
22 // RUN: %clang_cc1 -std=c++20 %t/c.cppm -fmodule-file=a=%t/a.pcm -fmodule-file=b=%t/b.pcm \
23 // RUN: -fsyntax-only -verify
25 // RUN: %clang_cc1 -std=c++20 -DEXPORT_OPERATOR %t/a.cppm -emit-reduced-module-interface -o %t/a.pcm
26 // RUN: %clang_cc1 -std=c++20 -DEXPORT_OPERATOR %t/b.cppm -fmodule-file=a=%t/a.pcm \
27 // RUN: -emit-reduced-module-interface -o %t/b.pcm
28 // RUN: %clang_cc1 -std=c++20 -DEXPORT_OPERATOR %t/c.cppm -fmodule-file=a=%t/a.pcm \
29 // RUN: -fmodule-file=b=%t/b.pcm -fsyntax-only -verify
36 void operator+(s, int) {}
46 #ifdef EXPORT_OPERATOR
55 export template<typename T>
61 #ifdef EXPORT_OPERATOR
62 // expected-no-diagnostics
68 #ifndef EXPORT_OPERATOR
69 // expected-error@b.cppm:6 {{invalid operands to binary expression ('n::s' and 'int')}}
70 // expected-note@+2 {{in instantiation of function template specialization 'b<int>' requested here}}
74 #ifndef EXPORT_OPERATOR
75 // expected-error@+2 {{invalid operands to binary expression ('n::s' and 'int')}}