]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/unify8.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / unify8.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/unify8.C b/gcc/testsuite/g++.old-deja/g++.pt/unify8.C
deleted file mode 100644 (file)
index afe57d1..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Build don't link:
-
-// Copyright (C) 2000 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 12 Jan 2001 <nathan@codesourcery.com>
-
-// Bug 1630. Template deduction at a call allowed conversions more lenient than
-// qualification conversions. That would lead to misleading diagnostics during
-// overload resolution.
-
-
-template <typename T> void Foo (T const **);
-template <typename T> void Bar (T const * const *);
-void Foo (int);       // ERROR - candidate
-void Foo (float);     // ERROR - candidate
-
-void baz (int **p1)
-{
-  Foo (p1);   // ERROR - no such function
-  Bar (p1);   // OK
-}