summaryrefslogtreecommitdiff
path: root/test/CXX/temp/temp.constr/temp.constr.decl/var-template-decl.cpp
blob: cf6874f12d3f5c3dbab5b7ab3f4dd519b8c93484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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