------- Comment #2 from pinskia at gcc dot gnu dot org 2006-06-14 16:52 ------- Here is a reduced testcase: typedef struct terror_struct {int c; } terror; int main(void) { terror e; switch(1) { case 1: e = (terror){400}; case 2: break; } }
-- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28031