1/* Test function call with function designator involving VLA
2   side-effects does not lead to an ICE.  */
3
4void f (void);
5void g (void);
6
7void
8h (int a, void *b)
9{
10  ((void *)(int (*)[++a])b ? f : g) ();
11}
12