// S : tags error min c $TAGS // S : expect --result error --location-comment ERROR // S : cc -o test.bc $CC_OPT $file // S : verify $V_OPT test.bc union U { struct { short a, b; } x; int y; }; int main() { union U u; u.x.b = 2; if ( u.y ) /* ERROR */ return 0; else return 1; }