view run/s/struct_initialization_07.d @ 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
children 2384a355aef0
line wrap: on
line source

// $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;
}