]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/other/forscope1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / other / forscope1.C
diff --git a/gcc/testsuite/g++.dg/other/forscope1.C b/gcc/testsuite/g++.dg/other/forscope1.C
deleted file mode 100644 (file)
index e694d6f..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// { dg-do compile }
-
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 4 Sept 2001 <nathan@codesourcery.com>
-
-// Bug 4206. We were nesting SCOPE_STMTs badly.
-
-struct A
-{
-  A ();
-  ~A ();
-};
-
-
-void Go( )
-{
-  while (1)
-    {
-      switch (1) {
-      default: {}
-      }
-      A d;
-    }
-  
-}