view run/struct_initialization_03.d @ 1622:d402aa53926c

Add test for bug 3092 written by Manuel K?nig
author Leandro Lucarella <llucax@gmail.com>
date Tue, 19 Oct 2010 19:18:23 -0300
parents f87ba6507260
children
line wrap: on
line source

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

module dstress.run.struct_initialization_03;

struct MyStruct{
	int a;
	int b;
	int c = 7;
}

int main(){
	static MyStruct s={c:2};
	assert(s.a==int.init);
	assert(s.b==int.init);
	assert(s.c==2);
	return 0;
}