]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/crash20.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / crash20.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/crash20.C b/gcc/testsuite/g++.old-deja/g++.other/crash20.C
deleted file mode 100644 (file)
index bf4370a..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-// Build don't link:
-
-#include <typeinfo>
-
-struct GcspFlags
-{
-  enum Enum
-  { 
-    OffYes, 
-    OffNo, 
-    Root
-  };
-
-  static char const* name(Enum flag);
-
-  template<Enum GCSP_FLAG>
-  struct btmFlag
-  { 
-    static Enum const f=OffNo;
-  };
-
-};
-
-template<>
-struct 
-GcspFlags::btmFlag<GcspFlags::OffYes>
-{ 
-  static GcspFlags::Enum const f=GcspFlags::OffYes;
-};
-
-int
-main ()
-{
-  GcspFlags::btmFlag<GcspFlags::OffYes> f;
-  const std::type_info& ti = typeid (f);
-  return 0;
-}
-