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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.dg
/
anon-struct-4.c
blob
dc30b0cc0baac4ff8d2df73d0ed2cebd65aae518
1
/* Test anonymous structures with type qualifiers. Bug 8420. */
2
/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
3
/* { dg-do compile } */
4
/* { dg-options "-std=gnu89" } */
5
6
struct
s
{
7
struct
{
int
a
; };
8
const struct
{
int
b
; };
9
struct
{
int
c
; }
volatile
;
10
};