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);
}