Files
clang-p2996/clang/test/CXX/temp/temp.constr/temp.constr.decl/var-template-decl.cpp
Saar Raz b65b1f322b [Concepts] Function trailing requires clauses
Function trailing requires clauses now parsed, supported in overload resolution and when calling, referencing and taking the address of functions or function templates.

Differential Revision: https://reviews.llvm.org/D43357
2020-01-09 15:07:51 +02:00

25 lines
558 B
C++

// 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