comparison tangotests/n.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
comparison
equal deleted inserted replaced
132:1700239cab2e 133:44a95ac7368a
1 struct Structure
2 {
3 static void static_method()
4 {
5 }
6
7 void method()
8 {
9 }
10 }
11
12 void main()
13 {
14 //Structure.static_method();
15
16 Structure s;
17 s.method();
18 }