aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/overload31.C
blob: e45d802033f04c6ef287ca5c053120500661ee09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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);
}