]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/ttp57.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / ttp57.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/ttp57.C b/gcc/testsuite/g++.old-deja/g++.pt/ttp57.C
deleted file mode 100644 (file)
index 7c7c938..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-// Build don't link:
-// Origin: Alex Samuel <samuel@codesourcery.com>
-
-namespace NS 
-{ 
-
-template <class T, int V>
-struct Base
-{
-};
-
-template <class T>
-struct Z
-{
-  const static int value_ = false;
-};
-
-template <class T>
-struct A : 
-  public Base <T, Z<T>::value_>
-{
-}; 
-
-template <class T> 
-void f(T)
-{
-}
-
-}
-
-
-template <template <class T> class U> 
-struct B 
-{
-};
-
-
-int 
-main ()
-{
-  B<NS::A> ba; 
-  f (ba);  // Koenig lookup
-  return 0;
-}
-