repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
ext
/
complit3.C
blob
c9d00a797b77cea53ed0ed4994f9c3fb56726dd4
1
// { dg-options "" }
2
3
int Compound_Literals_0()
4
{
5
static int y[] = (int []) {1, 2, 3}; // { dg-error "compound literal|size" }
6
static int z[] = (int [3]) {1}; // { dg-error "compound literal|size" }
7
return y[0]+z[0];
8
}