blob: 3209a90c83bc8683b89705df656221e3b43657b7 [file] [log] [blame]
/* Test function call with function designator involving VLA
side-effects does not lead to an ICE. */
void f (void);
void g (void);
void
h (int a, void *b)
{
((void *)(int (*)[++a])b ? f : g) ();
}