comparison run/mini/classes4.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 extern(C) int printf(char*, ...);
2
3 class A
4 {
5 int i = 42;
6 double df = 3.1415;
7 this()
8 {
9 }
10 char[] toString()
11 {
12 return "A:Object";
13 }
14 }
15
16 class B : A
17 {
18 ubyte b;
19 char[] toString()
20 {
21 return "B:A";
22 }
23 }
24
25 void main()
26 {
27 scope a = new A;
28 char[] as = a.toString;
29 {printf("a.toString = '%.*s'\n", as.length, as.ptr);}
30
31 Object o = a;
32 char[] os = o.toString;
33 {printf("o.toString = '%.*s'\n", os.length, os.ptr);}
34
35 scope b = new B;
36 char[] bs = b.toString;
37 {printf("b.toString = '%.*s'\n", bs.length, bs.ptr);}
38 }