blob: 21deeb528429971cbfea0a8502db2cfe4bcee281 [file] [log] [blame]
// Test that we properly convert a constant ptm to bool.
class A { };
int main()
{
int A::*const p = 0;
if (p)
return 1;
}