llvm-for-llvmta/tools/clang/test/CXX/temp/temp.constr/temp.constr.decl/var-template-decl.cpp

25 lines
558 B
C++
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -std=c++2a -x c++ -verify %s
namespace nodiag {
struct B {
template <typename T> requires (bool(T()))
static int A;
};
template <typename U> requires (bool(U()))
int B::A = int(U());
} // end namespace nodiag
namespace diag {
struct B {
template <typename T> requires (bool(T())) // expected-note{{previous template declaration is here}}
static int A;
};
template <typename U> requires (!bool(U())) // expected-error{{requires clause differs in template redeclaration}}
int B::A = int(U());
} // end namespace diag