aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/initlist10.C
blob: 80a8837d32922a77cc4ea7109bec7c64fffded3f (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
41
42
43
44
45
46
47
48
49
50
51
52
53
// PR c++/38380
// { dg-do compile { target c++11 } }

namespace std
{
 struct atomic_bool
  {
    bool _M_i;

    atomic_bool() = default;
    ~atomic_bool() = default;
    atomic_bool(const atomic_bool&) = delete;
    atomic_bool& operator=(const atomic_bool&) = delete;

    explicit atomic_bool(bool __i) { _M_i = __i; }

    operator bool() const volatile
    { return true; }
  };
}

namespace __gnu_test
{
  struct direct_list_initializable
  {
    template<typename _Ttype, typename _Tvalue>
      void 
      operator()()
      {
        struct _Concept
        {
          void __constraint()
          { 
            _Ttype __v1 = { }; // default ctor
            _Ttype __v2 { __a };  // single-argument ctor
          }

          _Tvalue __a;
        };

        void (_Concept::*__x)() __attribute__((unused))
          = &_Concept::__constraint;
      }
  };
}

int main()
{
  __gnu_test::direct_list_initializable test;

  test.operator()<std::atomic_bool, bool>();
  return 0;
}