repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
uninit-pr105562.C
blob
63a53b46ec0ab3ad8c1dba4d41ddbb31b86403f2
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 } }
4
5
#include <regex>
6
7
int main()
8
{
9
std::regex a(".");
10
std::regex b(std::move(a));
11
}