comparison tests/mini/a.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents test/a.d@d9d5d59873d8
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 module a;
2
3 extern(C) int printf(char*, ...);
4
5 int i = 42;
6
7 void main()
8 {
9 int j;
10 j = i;
11 int* p;
12 p = &j;
13 int k = *p;
14 assert(k == 42);
15
16 byte b = -1;
17 int i = b;
18 assert(i == -1);
19
20 int* p2 = p;
21
22 printf("Done\n");
23 }