Copyright clean-up (part 1):
[AROS.git] / compiler / purify / test4.c
blob3b10524d18b8b3753bf0cba16dade9caa7115316
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdio.h>
8 int main (int argc, char ** argv)
10 short v[3], x;
11 short * ptr;
13 ptr = v;
15 v[1] = 0;
17 x = *ptr++; /* UMR */
18 x = *ptr++; /* ok */
20 *ptr++ = 0; /* ok */
21 *ptr++ = 0; /* illegal write */