[PR c++/84492] stmt expr ending with overload
[official-gcc.git] / libstdc++-v3 / testsuite / 26_numerics / accumulate / 48750.cc
blob79b4173e9fe677f79e53ce3e75a8bb0f81d3039f
1 // Copyright (C) 2011-2018 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
18 #include <vector>
19 #include <numeric>
21 class NaturalParameters
23 public:
25 NaturalParameters()
26 : m_data(2)
27 { }
29 std::vector<double>::const_iterator
30 begin() const
31 { return m_data.begin(); }
33 std::vector<double>::const_iterator
34 end() const
35 { return m_data.begin(); }
37 NaturalParameters&
38 operator+=(const NaturalParameters&)
39 { return *this; }
41 private:
42 std::vector<double> m_data;
45 inline
46 NaturalParameters
47 operator+(const NaturalParameters& a, const NaturalParameters& b)
49 NaturalParameters tmp = a;
50 return tmp += b;
53 // libstdc++/48750
54 void test01()
56 // Used to fail in parallel-mode with a segfault.
57 for (std::size_t i = 0; i < 1000; ++i)
59 std::vector<NaturalParameters> ChildrenNP(1000);
60 NaturalParameters init;
61 NaturalParameters NP = std::accumulate(ChildrenNP.begin(),
62 ChildrenNP.end(), init);
66 int main()
68 test01();
69 return 0;