view undefined/default_argument_11_C.d @ 1511:fcafb2c9da5f

[Issue 1138] ICE when tuple template gets indexed Manuel K?nig <manuelk89@gmx.net> 2007-04-13 http://d.puremagic.com/issues/show_bug.cgi?id=1138
author thomask
date Mon, 23 Apr 2007 18:08:39 +0000
parents 549bdf42bf7d
children
line wrap: on
line source

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

// @author@	Unknown W. Brackets <unknown@simplemachines.org>
// @date@	2006-02-19
// @uri@	news:dtb7ee$gjq$1@digitaldaemon.com

module dstress.undefined.default_argument_11_C;

int x;

void test(out int i = x){
	assert(i == 5);
}

int main(){
	int i;
	test(i);

	assert(i == 5);

	return 0;
}