Mercurial > projects > ldc
annotate 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 |
rev | line source |
---|---|
lindquist@133 | 1 struct Structure |
lindquist@133 | 2 { |
lindquist@133 | 3 static void static_method() |
lindquist@133 | 4 { |
lindquist@133 | 5 } |
lindquist@133 | 6 |
lindquist@133 | 7 void method() |
lindquist@133 | 8 { |
lindquist@133 | 9 } |
lindquist@133 | 10 } |
lindquist@133 | 11 |
lindquist@133 | 12 void main() |
lindquist@133 | 13 { |
lindquist@133 | 14 //Structure.static_method(); |
lindquist@133 | 15 |
lindquist@133 | 16 Structure s; |
lindquist@133 | 17 s.method(); |
lindquist@133 | 18 } |