3 // Copyright (C) 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 24 Dec 2002 <nathan@codesourcery.com>
6 // PR 8702. Failure to match templates.
8 template <typename X> struct C1{};
12 template<typename Y> operator C1<Y>();
13 template<typename Y> operator C2<Y>();
16 template<typename X> template<typename Y>
17 C2<X>::operator C1<Y>()
24 operator int (); // { dg-error "operator" "" }
25 operator float (); // { dg-error "operator" "" }
26 operator float () const; // { dg-error "operator" "" }
27 template <typename T> operator T * (); // { dg-error "candidates" "" }
30 A::operator short () { // { dg-error "prototype for" "" }