]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.robertl/eb105.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb105.C
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb105.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb105.C
deleted file mode 100644 (file)
index f431fba..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// Build don't link: 
-template< class T >
-void    sort( T* t, int n )
-        {
-            struct
-/*line5*/   {
-                int     operator()(T i, T j)
-                        {
-                            return (i < j) ? -1 : ((j < i) ? 1 : 0) ;
-                        }
-            } c ;
-            sort(t, n, c, 0) ;
-        }