diffblue-cbmc/regression/cbmc/switch4/main.c

17 lines
115 B
C

main()
{
int x;
switch(x)
{
case 0:
goto end;
default:
x = 0;
}
end:
assert(x==0);
}