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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
struct-parse-2.c
blob
6d01f3e88aa6aac47fa902b7864ade59ace1d74f
1
/* PR c/35437 */
2
/* { dg-do compile } */
3
4
struct
A
5
{
6
int
i
;
7
struct
A a
;
/* { dg-error "has incomplete type" } */
8
};
9
10
void
foo
()
11
{
12
struct
A b
= {
0
};
13
}