comparison dmd/Tuple.d @ 13:427f8aa74d28

On the road to make Phobos compilable
author korDen
date Mon, 12 Apr 2010 16:29:33 +0400
parents 10317f0c89a5
children 460959608115
comparison
equal deleted inserted replaced
12:832f71e6f96c 13:427f8aa74d28
4 4
5 class Tuple 5 class Tuple
6 { 6 {
7 Objects objects; 7 Objects objects;
8 8
9 this()
10 {
11 objects = new Objects();
12 }
13
9 int dyncast() 14 int dyncast()
10 { 15 {
11 assert(false); 16 assert(false);
12 } 17 }
13 } 18 }