view run/array_initialization_03.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 5511f9277078
children 52c9e86b6486
line wrap: on
line source

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

// @author@	tetsuya <tetsuya_member@pathlink.com>
// @date@	2004-10-29
// @uri@	news:cltnob$2qnk$1@digitaldaemon.com
// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2162

module dstress.run.array_initialization_03;

template Foo(T, int L){
	T[L] arr;
	class Bar {
		T[L] arr;
	}
}

void test(){
	alias Foo!(int, 100) foo;
	foreach (int x; foo.arr)
		assert(x == int.init);	// initialized, no problem

	foo.Bar bar = new foo.Bar();
	foreach (int x; bar.arr)
		assert(x == int.init);	// not initialized, fails
}

int main(){
	test();
	return 0;
}