//#Safe /* DD 2017-12-06 Leads to empty stack exception in CACSL2Boogie */ #include enum the_enum { FIRST, SECOND }; struct the_struct { unsigned int a; unsigned int b; }; extern struct the_struct my_struct[SECOND]; struct the_struct my_struct[SECOND] = {2, 4}; int main(){ my_struct[0]; if (my_struct[0].a != 2) { //@ assert \false; } return my_struct[0].a; }