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

« back to all changes in this revision

Viewing changes to tests/misc/array_ptr.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 G = 1;
 
2
 
 
3
typedef int param_check[20];
 
4
 
 
5
int f(param_check **x) {
 
6
  G=(**x)[0];
 
7
  (**x)[0] = 2;
 
8
}
 
9
 
 
10
param_check l={1};
 
11
 
 
12
int main() {
 
13
  int g = &l;
 
14
  f(&g);
 
15
}