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
PR c++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
stmtexpr6.C
blob
d2518a64a38907c537da89c4ac64aaddb21101ca
1
// { dg-do run }
2
// { dg-options "" }
3
4
int a[128];
5
6
int main() {
7
// Check that array-to-pointer conversion occurs in a
8
// statement-expression.
9
if (sizeof (({ a; })) != sizeof (int *))
10
return 1;
11
}