comparison tangotests/i.d @ 133:44a95ac7368a trunk

[svn r137] Many fixes towards tango.io.Console working, but not quite there yet... In particular, assertions has been fixed to include file/line info, and much more!
author lindquist
date Mon, 14 Jan 2008 05:11:54 +0100
parents
children 68a7dd38c03c
comparison
equal deleted inserted replaced
132:1700239cab2e 133:44a95ac7368a
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 func()
18 {
19 scope c = new C;
20 }