blob: 00c49e72ece4f104bf3598f5e33616c31ad05d84 [file] [log] [blame]
// 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
}