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
Merged with mainline at revision 128810.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
stmtexpr11.C
blob
8b5c5f8476873a46d0ebfb015f4dc82671c09b8b
1
// PR c++/31337
2
// { dg-options "" }
3
4
struct A
5
{
6
int i[0];
7
A();
8
A(const A&);
9
~A();
10
};
11
12
void foo()
13
{
14
A a = ({ A(); });
15
}