view run/align_10.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents 56eae111e8ef
children b8c0195059d9
line wrap: on
line source

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

// @author@	Ben Hinkle <bhinkle@mathworks.com>
// @date@	2005-03-23
// @uri@	news:d1s5gs$2odc$1@digitaldaemon.com

// @WARNING@	imports Phobos' gc

module dstress.run.align_10;

import std.gc;

struct S{
	char[] font_face;
	byte charset;
}

int main(){
	S[] x;

	S s;
	s.font_face="font face".dup;
	x ~= s;
	s.font_face="font face".dup;
	x ~= s;
	s.font_face="font face".dup;
	x ~= s;
	s.font_face="font face".dup;
	x ~= s;

	fullCollect();

	assert(x[0].font_face=="font face");
	assert(x[1].font_face=="font face");

	return 0;
}