[svn r26] * Fixed templates defining a constant value

* Fixed problem with slice-slice copy assignment if a side was a temporary slice
This commit is contained in:
Tomas Lindquist Olsen
2007-10-04 07:35:02 +02:00
parent 879d2f10be
commit 0ba16ebb39
5 changed files with 40 additions and 4 deletions

8
test/stdiotest.d Normal file
View File

@@ -0,0 +1,8 @@
module stdiotest;
import std.stdio;
void main()
{
writefln("hello world",42,'x');
}