From: Ian Lance Taylor Date: Fri, 13 Aug 2004 00:02:16 +0000 (+0000) Subject: remove file for real X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5be346e8e986c622aba3a9c86840ddbf99c2b3e8;p=gcc.git remove file for real From-SVN: r85918 --- 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 8850f9fa639..00000000000 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C +++ /dev/null @@ -1,19 +0,0 @@ -//Build don't link: -#include -#include - -template class Expr -{ -public : -Expr(){}; -Expr(const T&){}; -}; - -template -inline bool compare(const Expr a, const Expr b){ return true; }; - -int main() -{ -vector a(3); -sort( a.begin(), a.end(), compare ); // ERROR - no matching function -}