comparison tangotests/debug8.d @ 253:c6f25edd6ef3 trunk

[svn r270] Forgot the test for struct debug info.
author lindquist
date Thu, 12 Jun 2008 17:01:31 +0200
parents
children
comparison
equal deleted inserted replaced
252:e3355ce5444b 253:c6f25edd6ef3
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 }