aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C
diff options
context:
space:
mode:
author(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-14 01:24:30 +0000
committer(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-14 01:24:30 +0000
commitd206658419f927052a973ae4b433240c115140a8 (patch)
tree31d53e381a2d47013b97b2efa228f9b4f0fdbddc /gcc/testsuite/g++.old-deja/g++.robertl/eb42.C
parent241a90f27d58d9bb9f642efa4575a88016b8f854 (diff)
This commit was manufactured by cvs2svn to create tagcp-parser-merge-1
'cp-parser-merge-1'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/tags/cp-parser-merge-1@44881 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.robertl/eb42.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb42.C19
1 files changed, 0 insertions, 19 deletions
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
index c27aa8d2df7..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C
+++ /dev/null
@@ -1,19 +0,0 @@
-//Build don't link:
-#include <vector>
-#include <algorithm>
-
-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()
-{
- std::vector<int> a(3);
- std::sort( a.begin(), a.end(), compare ); // ERROR - no matching function
-}