OSDN Git Service

remove
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 28 May 1998 23:53:15 +0000 (23:53 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 28 May 1998 23:53:15 +0000 (23:53 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20129 138bc75d-0d04-0410-961f-82ee72b054a4

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 0602d16..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#define TEMPLATE 1
-#include <vector.h>
-#include <algo.h>
-
-template <class T> class Expr
-{
-public :
-Expr(){};
-Expr(const T&){};
-};
-
-#ifdef TEMPLATE
-template <class T >
-inline bool compare(const Expr<T> a, const Expr<T> b){ return true; };
-#else
-inline bool compare(const Expr<int> a, const Expr<int> b){ return true; };
-#endif
-
-void main()
-{
-vector<int>     a(3);
-sort( a.begin(), a.end(), compare );
-}