8sa1-gcc/gcc/testsuite/g++.old-deja/g++.jason/overload31.C
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

25 lines
416 B
C

// PRMS Id: 6568
// Bug: g++ complains about the ambiguous conversion to bool even though
// we wouldn't end up using it anyway.
// Build don't link:
class AString
{
public:
AString (unsigned len);
operator char *() const;
operator char const *() const;
};
void
foo(unsigned t, AString const & handle)
{
}
void
foo(AString const & handle, bool includeSpecials)
{
unsigned t;
foo(t, handle);
}