]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/static11.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / static11.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/static11.C b/gcc/testsuite/g++.old-deja/g++.other/static11.C
deleted file mode 100644 (file)
index f993fd3..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// Build don't link:
-// Origin: Raja R Harinath <harinath@cs.umn.edu>
-
-enum ReservedName {
-  rIGNORE,
-  rINCLUDE
-};
-
-void maybeStatusKeyword()
-{
-  static const ReservedName statusKeywords[] = { rINCLUDE, rIGNORE };
-  for (int i = 0; i < 2; i++) {
-    ReservedName r = statusKeywords[i];
-  }
-}