view run/c/case_01.d @ 618:569a4150a3dd

fixed meta data
author thomask
date Sat, 06 Aug 2005 14:37:26 +0000
parents b5fc547b3fd1
children fbee62becd2c
line wrap: on
line source

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

// @author@	Paul Guerra <Paul_member@pathlink.com>
// @date@	2005-07-29
// @uri@	news:dccg4l$o6a$1@digitaldaemon.com
	
module dstress.run.c.case_01;

int main(){
	int u=2;

	switch(u){
		case 1:
			void j(){
				case 2:
				u++;
			}
		break;
	}
	
	return 0;
}