DEBSOURCES
Skip Quicknav
sources / frama-c / 20161101%2Bsilicon%2Bdfsg-5 / tests / value / context_free_simple.i
12345678910111213
int z=1; int f(int x,int y) { z = x+y; return y+1; } void main(void) { f(2,3); }