~ubuntu-branches/debian/sid/frama-c/sid

« back to all changes in this revision

Viewing changes to tests/jessie/incr.c

  • Committer: Bazaar Package Importer
  • Author(s): Mehdi Dogguy
  • Date: 2009-06-03 08:19:25 UTC
  • Revision ID: james.westby@ubuntu.com-20090603081925-kihvxvt0wy3zc4ar
Tags: upstream-20081201.dfsg
ImportĀ upstreamĀ versionĀ 20081201.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
int b;
 
3
int t[10];
 
4
 
 
5
/*@ requires b == 0 ;
 
6
  @ ensures b == 1;
 
7
  @*/
 
8
void f() {
 
9
  t[b++] = 1;
 
10
}
 
11
 
 
12
/*
 
13
Local Variables:
 
14
compile-command: "make incr"
 
15
End:
 
16
*/