comparison tests/mini/phobos/stdiotest2.d @ 500:fc098100ecc7

fixed some failing minitests (badly classified / phobos)
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 12 Aug 2008 00:54:32 +0200
parents tests/mini/stdiotest2.d@1bb99290e03a
children
comparison
equal deleted inserted replaced
496:8bd31c8208da 500:fc098100ecc7
1 module stdiotest2;
2 import std.stdio;
3 void main()
4 {
5 int[4] v = [1,2,3,4];
6 {
7 writefln("%s", v);
8 {
9 int[] dv = v;
10 {writefln("%s", dv);}
11 }
12 }
13
14 {
15 writefln(v);
16 {
17 //int[] dv = v;
18 //{writefln(dv);}
19 }
20 }
21 //writefln(1,2,3,4.56,"hello",v);
22 }