This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/33940] call of overloaded 'basic_string(const<anonymous class>&)' is ambiguous for a template member function



------- Comment #4 from pcarlini at suse dot de  2007-10-29 17:39 -------
In practice, consider this:

const
class {
public:
  template <class T> operator T() const
  {
    return int();
  }

} MYNULLOBJECT = {};

void f(int);
void f(unsigned);

int main()
{
  f(MYNULLOBJECT);
}

No conforming compiler accepts it.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33940


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]