]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.robertl/eb24.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb24.C
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb24.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb24.C
deleted file mode 100644 (file)
index 7ea7b41..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-// Build don't link:
-#include <iostream>
-
-template < class T >
-class X
-{
-  protected:
-
-    union {
-        int     x;
-        double  y;
-    };
-};
-
-template < class T >
-class Y : public X<T>
-{
-  public:
-
-    using X<T>::x;
-
-    void        f () { std::cout << x << std::endl; }
-};