Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / warn / uninit-pr105562.C
blob63a53b46ec0ab3ad8c1dba4d41ddbb31b86403f2
1 // { dg-require-effective-target c++11 }
2 // { dg-options "-O -Wall -fno-strict-aliasing" }
3 // { dg-skip-if "requires hosted libstdc++ for regex" { ! hostedlib } }
5 #include <regex>
7 int main()
9   std::regex a(".");
10   std::regex b(std::move(a));