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

« back to all changes in this revision

Viewing changes to tests/jessie/roux2.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
int *p;
 
2
 
 
3
/*@ requires \valid(p);
 
4
  @ ensures \valid(p);
 
5
  @*/
 
6
void f(int *q) {}
 
7
 
 
8
/*@ requires \valid(p);
 
9
  @ ensures \valid(p);
 
10
  @*/
 
11
void g()
 
12
{
 
13
 int i;
 
14
 
 
15
 f(&i);
 
16
}