annotate tangotests/u.d @ 328:7086a84ab3d6 trunk

[svn r349] Fixed problems with static arrays of void as well as a static arrays with zero length. Fixed issues with DMD generated assert statements when using class invariants, generally due to incomplete ASTs. Removed some dead code. Added a few comments.
author lindquist
date Fri, 11 Jul 2008 00:17:00 +0200
parents ffcc9a2f3d9d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
140
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
1 import tango.io.Console;
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
2 void main()
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
3 {
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
4 Cout("getting name std").newline;
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
5 Cerr("getting name err").newline;
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
6 auto s = Cin.get();
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
7 Cout("putting name").newline;
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
8 Cout (s).newline;
ffcc9a2f3d9d [svn r144] fixes
lindquist
parents:
diff changeset
9 }