changeset 548:72745b846f1e

struct initialization Ben Hinkle <ben.hinkle@gmail.com> 2005-05-20 <d6j9fq$2qdd$1@digitaldaemon.com>
author thomask
date Fri, 20 May 2005 09:36:19 +0000
parents e482f375f716
children 965b2cd4d7a9
files run/s/struct_initialization_07.d
diffstat 1 files changed, 26 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/s/struct_initialization_07.d	Fri May 20 09:36:19 2005 +0000
@@ -0,0 +1,26 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Ben Hinkle <ben.hinkle@gmail.com>
+// @date@	2005-05-20
+// @uri@	<d6j9fq$2qdd$1@digitaldaemon.com>
+
+module dstress.run.s.struct_initialization_07;
+
+struct Node {
+	Node* left,right,parent;
+	int color;
+	char[] key;
+	char[] value;
+}
+
+int main(){
+	Node* x = new Node;
+	assert(x.left is null);
+	assert(x.right is null);
+	assert(x.parent is null);
+	assert(x.key.length == 0);
+	assert(x.value.length == 0);
+	return 0;
+}