]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/jump.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / jump.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/jump.C b/gcc/testsuite/g++.old-deja/g++.jason/jump.C
deleted file mode 100644 (file)
index e59de36..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// PRMS Id: 6036
-
-extern int a;
-
-int main() {
-  switch (a) {
-  case 1:
-    int v2 = 3;                        // ERROR - referenced below
-  case 2:                      // ERROR - jumping past initializer
-    if (v2 == 7)
-      ;
-  }
-  return 0;
-}