view run/s/struct_initialization_07_B.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 2384a355aef0
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Ben Hinkle <ben.hinkle@gmail.com>
// @date@	2005-05-20
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4080

module dstress.run.s.struct_initialization_07_B;

struct Node {
	Node* left,right,parent;
	int key;
	int 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 == 0);
	assert(x.value == 0);
	return 0;
}