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
builtin-has-attribute-4.c: Skip on 32-bit hppa*-*-hpux*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
anon-struct-15.c
blob
d9e786a8d86bc26fa8a57f89a8677f1e8c67fbf5
1
/* Test diagnostics for duplicate field names involving anonymous
2
struct or union as first field. PR 46889. */
3
/* { dg-do compile } */
4
/* { dg-options "" } */
5
6
struct
foo
{
7
union
{
8
struct
{
9
unsigned long
time_stamp
;
10
};
11
struct
{
12
int
*
page
;
13
};
14
};
15
int
*
page
;
/* { dg-error "duplicate member" } */
16
};