comparison tests/mini/pt.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/pt.d@d9d5d59873d8
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1
2 extern(C) int printf(char*, ...);
3
4 int main()
5 {
6 char[16] s = void;
7 {
8 char[] sd = s;
9 {
10 s[0] = 'a';
11 s[1] = 'b';
12 s[2] = 'c';
13 }
14
15 printf("%p %p\n", s.ptr, sd.ptr);
16 printf("%c%c%c\n", s[0], s[1], s[2]);
17 }
18
19 char[16] s1 = void;
20 char[16] s2 = void;
21 char[] d1 = s1;
22
23 {
24 printf("%p\n%p\n%p\n", s1.ptr, s2.ptr, d1.ptr);
25 }
26
27 int[16] arr;
28
29 return 0;
30 }