June 25, 2004
Given:

    Object a;
    bool tautology() { return a == b; }

The error is "cannot implicitly convert int to bit."

 -- andy
June 25, 2004
Andy Friesen wrote:
> Given:
> 
>     Object a;
>     bool tautology() { return a == b; }
> 
> The error is "cannot implicitly convert int to bit."

.... replace that 'b' with an 'a' and you'll actually get that error.
Whoops.

 -- andy