comparison run/mini/norun_debug8.d @ 1628:c6ef09dfba4d

add mini test set from ldc project
author Moritz Warning <moritzwarning@web.de>
date Mon, 10 Jan 2011 19:47:18 +0100
parents
children
comparison
equal deleted inserted replaced
1627:e1b954780837 1628:c6ef09dfba4d
1 module mini.norun_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 = cast(int*) 1;
30 *fail = 0;
31 }