comparison tests/mini/classes4.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/classes4.d@d9d5d59873d8
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
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 }