git-svn-id: svn+ssh://svn.cprover.org/srv/svn/cbmc/trunk@2065 6afb6bc1-c8e4-404c-8f48-9ae832c5b171
This commit is contained in:
kroening 2013-02-03 17:23:37 +00:00
parent 3edba9a091
commit c6fb156620
2 changed files with 3 additions and 0 deletions

View File

@ -14,8 +14,10 @@ int i;
int main()
{
assert(i==1);
assert(a_struct.asd==0);
f();
assert(i==2);
assert(a_struct.asd==123);
}

View File

@ -5,4 +5,5 @@ int i=1;
void f()
{
i=2;
a_struct.asd=123;
}