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
22 void operator+(s, int) {}
32 #ifdef EXPORT_OPERATOR
41 export template<typename T>
47 #ifdef EXPORT_OPERATOR
48 // expected-no-diagnostics
54 #ifndef EXPORT_OPERATOR
55 // expected-error@b.cppm:6 {{invalid operands to binary expression ('n::s' and 'int')}}
56 // expected-note@+2 {{in instantiation of function template specialization 'b<int>' requested here}}
60 #ifndef EXPORT_OPERATOR
61 // expected-error@+2 {{invalid operands to binary expression ('n::s' and 'int')}}