]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
remove
authorJason Merrill <jason@gcc.gnu.org>
Thu, 28 May 1998 23:53:15 +0000 (19:53 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Thu, 28 May 1998 23:53:15 +0000 (19:53 -0400)
From-SVN: r20129

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 );
-}