D - [BUG](low) forbidden hiding of local variable not reported
- Manfred Nowak (16/16) Feb 05 2004 dmd 0.79, WIN98SE:
dmd 0.79, WIN98SE:
void main(){
int i=1;
{ int i;
printf("%d\n",i);
}
switch( true){
int i;
case true:
printf("%d\n",i);
}
}
ouputs:
| 0
| 4263124
So long.
Feb 05 2004








Manfred Nowak <svv1999 hotmail.com>