summaryrefslogtreecommitdiffstats
path: root/clang/test/CXX/temp/temp.constr/temp.constr.decl/var-template-decl.cpp
blob: eabb636b0bbbf33bcaacad8f2e3d187e860de256 (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
OpenPOWER on IntegriCloud