Diff of /test/stmt-case.c [000000] .. [77aa95]  Maximize  Restore

Switch to side-by-side view

--- a
+++ b/test/stmt-case.c
@@ -0,0 +1,14 @@
+
+void func()
+{
+	switch (value)
+	{
+		case 'h':
+			c++;
+			c--;
+			break;
+		default:
+			c--;
+			break;
+	}
+}