comparison tests/mini/interface5.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/interface5.d@44a95ac7368a
children dde9dbae052a
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 module interface5;
2
3 extern(C) int printf(char*,...);
4
5 interface I
6 {
7 void func();
8 }
9
10 class C : I
11 {
12 int i;
13 void func()
14 {
15 printf("C\n");
16 i++;
17 }
18 }
19
20 void main()
21 {
22 C c = new C;
23 c.func();
24 {
25 I i = c;
26 c.func();
27
28 C c2 = cast(C)i;
29 c2.func();
30
31 c.func();
32 assert(c.i == 4);
33 }
34 }