blob: 3aa21c7780efdfd6395f9239c80a7abb4aa8687d [file] [log] [blame]
class C
{
template<typename U>
operator U();
};
int fn (C c)
{
return C::operator float(c); // { dg-error "operator U" }
}