aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/sfinae24.C
blob: 7138c96e66fc861dfb2da8eba5a745f8956d01b0 (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
// PR c++/44969

template<bool, typename T = void> struct enable_if { typedef T type; };
template<typename T> struct enable_if<false, T> { };

template<typename Tp, typename Arg1, typename Arg2>
  class mini_is_constructible
  {
    typedef char one;
    typedef struct { char arr[2]; } two;

    template<typename Tp1, typename Arg1_, typename Arg2_>
      static typename
      enable_if<(sizeof(Tp1(Arg1_(), Arg2_()), 1) > 0), one>::type
      test(int);

    template<typename, typename, typename>
      static two test(...);

  public:
    static const bool value = sizeof(test<Tp, Arg1, Arg2>(0)) == 1;
  };

class A { };

int Test[mini_is_constructible<int, A, A>::value ? -1 : 1];