1 /* Verify we don't ICE on statement-expressions.  */
2 /* { dg-do compile } */
3 
foo(void)4 void foo(void)
5 {
6   char buf[({ 4; })];
7 }
8