| // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/A.cppm -o %t/A.pcm |
| // RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -fsyntax-only -verify |
| // RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %t/A.cppm -o %t/A.pcm |
| // RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %t/Use.cpp -fsyntax-only -verify |
| template<typename T, typename U> |
| inline constexpr bool IsSame = false; |
| inline constexpr bool IsSame<T, T> = true; |
| ~A() noexcept(IsSame<T, T>); |
| void bool_consume(bool b); |
| bool_consume(IsSame); // expected-error {{use of undeclared identifier 'IsSame'}} |