summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/partial-specialization7.C
blob: aa42191e178db0c1888ac12e9e83971c6d2fb5a9 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// PR c++/81102

template <typename FuncSig, FuncSig f>
struct HelperWrapper;

// [...]

template <typename Ret, Ret (&Func)()>
struct HelperWrapper<Ret (&)(), Func>
{
    static inline int WrapFuncT(const int)
    {
        return 0; // Changed
    }
};

// Unary
template <typename Ret, typename Arg1, Ret (&Func)(Arg1)>
struct HelperWrapper<Ret (&)(Arg1), Func>
{
    static inline int WrapFuncT(const int)
    {
        return 1; // Changed
    }
};

// Binary
template <typename Ret, typename Arg1, typename Arg2, Ret (&Func)(Arg1, Arg2)>
struct HelperWrapper<Ret (&)(Arg1, Arg2), Func>
{
    static inline int WrapFuncT(const int)
    {
        return 2; // Changed
    }
};

int main()
{
  return 0;
}