| // RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-module-interface -o %t/a.pcm |
| // RUN: %clang_cc1 -std=c++20 %t/b.cppm -emit-module-interface -o %t/b.pcm \ |
| // RUN: -fmodule-file=a=%t/a.pcm |
| // RUN: %clang_cc1 -std=c++20 %t/use.cc -fmodule-file=a=%t/a.pcm -fmodule-file=b=%t/b.pcm \ |
| // RUN: -fsyntax-only -verify |
| // RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-reduced-module-interface -o %t/a.pcm |
| // RUN: %clang_cc1 -std=c++20 %t/b.cppm -emit-reduced-module-interface -o %t/b.pcm \ |
| // RUN: -fmodule-file=a=%t/a.pcm |
| // RUN: %clang_cc1 -std=c++20 %t/use.cc -fmodule-file=a=%t/a.pcm -fmodule-file=b=%t/b.pcm \ |
| // RUN: -fsyntax-only -verify |
| friend bool operator==(monostate, monostate) = default; |
| friend bool operator==(wrapper const &, wrapper const &) = default; |
| // expected-no-diagnostics |
| static_assert(n::wrapper() == n::wrapper()); |