remove file for real
authorIan Lance Taylor <ian@gcc.gnu.org>
Fri, 13 Aug 2004 00:02:16 +0000 (00:02 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Fri, 13 Aug 2004 00:02:16 +0000 (00:02 +0000)
From-SVN: r85918

gcc/testsuite/g++.old-deja/g++.robertl/eb42.C [deleted file]

diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C
deleted file mode 100644 (file)
index 8850f9f..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-//Build don't link:
-#include <vector.h>
-#include <algo.h>
-
-template <class T> class Expr
-{
-public :
-Expr(){};
-Expr(const T&){};
-};
-
-template <class T >
-inline bool compare(const Expr<T> a, const Expr<T> b){ return true; };
-
-int main()
-{
-vector<int>     a(3);
-sort( a.begin(), a.end(), compare ); // ERROR - no matching function 
-}