comparison tests/mini/i.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 tangotests/i.d@68a7dd38c03c
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 interface IN
2 {
3 void func();
4 }
5 abstract class AC
6 {
7 abstract void func();
8 long ll;
9 }
10 class C : AC
11 {
12 void func()
13 {
14 }
15 }
16
17 void main()
18 {
19 scope c = new C;
20 }