match.pd: Fix indefinite recursion during exp-log transformations [PR118490]
[gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector / bool / 110807.cc
blob2e9d4019edbee0c9f82fb89fa270f2b74c65ded1
1 // { dg-options "-O2" }
2 // { dg-do compile { target c++11 } }
4 // Bug 110807
5 // Copy list initialisation of a vector<bool> raises a warning with -O2
7 #include <vector>
9 std::vector<bool> byCallSpread;
11 void f()
13 byCallSpread = {true};