changeset 612:b5fc547b3fd1

Paul Guerra <Paul_member@pathlink.com> 2005-07-29 news:dccg4l$o6a$1@digitaldaemon.com
author thomask
date Tue, 02 Aug 2005 22:47:08 +0000
parents 697d0f7b0fe8
children 93eb1400acc5
files run/c/case_01.d
diffstat 1 files changed, 24 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/c/case_01.d	Tue Aug 02 22:47:08 2005 +0000
@@ -0,0 +1,24 @@
+// $HeadURL$
+// $Date$
+// $Autor$
+
+// @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;
+}
\ No newline at end of file