blob: df826b6f4c0f12964e1500a8f0df10f46ca2fc4f [file] [log] [blame]
/* { dg-require-effective-target untyped_assembly } */
extern void d (void);
void (*foo (void)) (float)
{
void (*(*x) (void)) (float) = d;
return (*x) ();
}