]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.robertl/eb76.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb76.C
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb76.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb76.C
deleted file mode 100644 (file)
index f8dba7b..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-//Build don't link:
-// the template operator!= interferes.  It should be in a namespace.
-
-#include <utility>
-
-enum T {
-  V1
-};
-
-struct X {
-  T      t : 31;
-};
-
-void
-f(X& v) {
-  if( v.t != V1 ) {            // complains about taking address of bitfield
-  }
-}