aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p807.C
blob: 00c49e72ece4f104bf3598f5e33616c31ad05d84 (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
30
31
32
33
34
// prms-id: 807

extern "C" int printf(const char*, ...);

class B;

class AX
{
 protected:
   int x;

 public:
   operator B();
};


class B
{
 private:
   int x;
 public:
   B(const AX&);
};


int foo(B& b);			// ERROR - referenced below


int main()
{
   AX a;
   foo(a);  // ERROR - Ambiguous B(a) or a.operator B()  //  See ARM 12.3.2

}