repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
/cp
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
lambda-init17.C
blob
6c7cb449143a47759d7440e8da4fa9f1715fc5e2
1
// PR c++/71546
2
// { dg-do compile { target c++14 } }
3
4
namespace n { struct make_shared { }; }
5
6
int main()
7
{
8
int x1;
9
[e = n::make_shared (), x1]() {};
10
}