view run/array_initialization_03.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 5511f9277078
children 6e4063f99377
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
// @uri@	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;
}