Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr93573-1.c
blob: 26ec9b77d6f273fa1a3302ea5c96ea3eb08958f1 [
file
] [
log
] [
blame
]
/* PR c/93573 */
/* { dg-do compile } */
/* { dg-options "" } */
void
bar
();
void
foo
(
char
a
)
{
union
C
{
int
d
[
100.0
];
char
*
e
;
};
/* { dg-error "has non-integer type" } */
bar
((
union
C
)
&
a
);
}