1 /* Empty statement expressions should get void type.  Bug 14765 from
2    Serge Belyshev <belyshev@lubercy.com>.  */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
5 
6 int a;
fun()7 void fun ()
8 {
9 	a = 0;
10 	a = ({}); /* { dg-error "not ignored" "void stmt expr" } */
11 }
12