]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.robertl/eb37.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb37.C
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb37.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb37.C
deleted file mode 100644 (file)
index be4b57d..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-// Build don't link: 
-template<class T>
-struct A {
-    typedef T T1;
-};
-
-template<class T>
-struct B {
-    typedef T T2;
-};
-
-template<class T>
-struct C {
-};
-
-template<class E>
-C<typename E::T2::T1>
-foo (E)
-{
-    return C<typename E::T2::T1>();
-}
-
-void test()
-{
-    foo(B<A<int> >());
-}