comparison tests/mini/debug8.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 tangotests/debug8.d@c6f25edd6ef3
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 module tangotests.debug8;
2
3 struct Str
4 {
5 size_t len;
6 void* ptr;
7 }
8
9 struct Foo
10 {
11 long l;
12 Bar bar;
13 }
14
15 struct Bar
16 {
17 float x,y,z;
18 Foo* foo;
19 }
20
21 void main()
22 {
23 Str str;
24 Foo foo;
25 foo.l = 42;
26 foo.bar.y = 3.1415;
27 foo.bar.foo = &foo;
28
29 int* fail;
30 *fail = 0;
31 }