aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/bool7.C
blob: 1ecb68d4e0471b6b5890c89c03b27ef8536b03f5 (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
25
26
27
28
29
// Build don't link:

struct A
{
  operator bool () const;
  operator const void * () const;
};

struct B
{
  A a;
  int foo1 ();
  int foo2 ();
};

int
B::foo1 ()
{
  return a ? 0 : 1;  // ambiguous default type conversion for `operator !='
}

int
B::foo2 ()
{
  if (a)
    return 0;
  else
    return 1;
}