view nocompile/i/if_15_A.d @ 1183:95444069a9c3

name shadowing in if statement BCS <fubar@pathlink.com> 2006-10-07 news:eg95k2$27pi$1@digitaldaemon.com
author thomask
date Thu, 12 Oct 2006 15:00:58 +0000
parents
children 1ee9a0dd42d9
line wrap: on
line source

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

// @author@	BCS <fubar@pathlink.com>
// @date@	2006-10-07
// @uri@	news:eg95k2$27pi$1@digitaldaemon.com
// @desc@	name shadowing in if statement

// __DSTRESS_ELINE__ 17

module dstress.nocompile.i.if_15_A;

void foo(){
	int i;

	if(int i = 1){
	}
}